mirror of
https://github.com/ivanvorobei/SwiftUI.git
synced 2026-03-24 18:31:27 +01:00
8 lines
114 B
Swift
Executable File
8 lines
114 B
Swift
Executable File
import SwiftUI
|
|
|
|
struct TodoItem: Identifiable {
|
|
var id: UUID
|
|
var title: String
|
|
var isFinished: Bool
|
|
}
|