mirror of
https://github.com/pboulch/luto.git
synced 2025-12-19 12:52:47 +00:00
14 lines
164 B
Swift
14 lines
164 B
Swift
//
|
|
// Task.swift
|
|
// Luto
|
|
//
|
|
// Created by Pierre Boulc'h on 13/07/2023.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct Task {
|
|
var title: String
|
|
var description: String
|
|
}
|