summaryrefslogtreecommitdiffstats
path: root/Solverv/Item.swift
diff options
context:
space:
mode:
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
+ }
+}