summaryrefslogtreecommitdiff
path: root/ShedCalc/Item.swift
diff options
context:
space:
mode:
Diffstat (limited to 'ShedCalc/Item.swift')
-rw-r--r--ShedCalc/Item.swift18
1 files changed, 18 insertions, 0 deletions
diff --git a/ShedCalc/Item.swift b/ShedCalc/Item.swift
new file mode 100644
index 0000000..55989b7
--- /dev/null
+++ b/ShedCalc/Item.swift
@@ -0,0 +1,18 @@
+//
+// Item.swift
+// ShedCalc
+//
+// Created by Jacky Jack on 28/07/2026.
+//
+
+import Foundation
+import SwiftData
+
+@Model
+final class Item {
+ var timestamp: Date
+
+ init(timestamp: Date) {
+ self.timestamp = timestamp
+ }
+}