Files
luto/Luto/Models/Task.swift

14 lines
164 B
Swift
Raw Normal View History

2023-07-13 13:02:39 +02:00
//
// Task.swift
// Luto
//
// Created by Pierre Boulc'h on 13/07/2023.
//
import Foundation
struct Task {
var title: String
var description: String
}