summaryrefslogtreecommitdiffstats
path: root/Solverv/Item.swift
diff options
context:
space:
mode:
authorivar <i@oiee.no>2025-12-15 23:42:01 +0100
committerivar <i@oiee.no>2025-12-15 23:42:01 +0100
commit0e1635b057903434c0f193ad9ead7035150b0773 (patch)
tree5838be9d71966099aa2b13d96c5b3a5215a534b0 /Solverv/Item.swift
downloadsolverv-0e1635b057903434c0f193ad9ead7035150b0773.tar.xz
solverv-0e1635b057903434c0f193ad9ead7035150b0773.zip
Initial Commit
Diffstat (limited to 'Solverv/Item.swift')
-rw-r--r--Solverv/Item.swift18
1 files changed, 18 insertions, 0 deletions
diff --git a/Solverv/Item.swift b/Solverv/Item.swift
new file mode 100644
index 0000000..d15a7c0
--- /dev/null
+++ b/Solverv/Item.swift
@@ -0,0 +1,18 @@
+//
+// Item.swift
+// Solverv
+//
+// Created by Ivar Løvlie on 15/12/2025.
+//
+
+import Foundation
+import SwiftData
+
+@Model
+final class Item {
+ var timestamp: Date
+
+ init(timestamp: Date) {
+ self.timestamp = timestamp
+ }
+}