diff options
| author | Fuwn <[email protected]> | 2025-02-13 02:44:02 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-02-13 02:44:02 -0800 |
| commit | 2e22626a5b994182a5c4990d042de1c3f73e47b3 (patch) | |
| tree | c7bc556b04d9092197ff366c3d1b9624dbccf62f /Tonbo/Item.swift | |
| download | tonbo-main.tar.xz tonbo-main.zip | |
Diffstat (limited to 'Tonbo/Item.swift')
| -rw-r--r-- | Tonbo/Item.swift | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Tonbo/Item.swift b/Tonbo/Item.swift new file mode 100644 index 0000000..a2f85bf --- /dev/null +++ b/Tonbo/Item.swift @@ -0,0 +1,11 @@ +import Foundation +import SwiftData + +@Model +final class Item { + var timestamp: Date + + init(timestamp: Date) { + self.timestamp = timestamp + } +} |