summaryrefslogtreecommitdiff
path: root/Tonbo/Item.swift
diff options
context:
space:
mode:
authorFuwn <[email protected]>2025-02-13 02:44:02 -0800
committerFuwn <[email protected]>2025-02-13 02:44:02 -0800
commit2e22626a5b994182a5c4990d042de1c3f73e47b3 (patch)
treec7bc556b04d9092197ff366c3d1b9624dbccf62f /Tonbo/Item.swift
downloadtonbo-main.tar.xz
tonbo-main.zip
feat: Initial commitHEADmain
Diffstat (limited to 'Tonbo/Item.swift')
-rw-r--r--Tonbo/Item.swift11
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
+ }
+}