diff options
| author | Arturs Artamonovs <arturs.artamonovs@protonmail.com> | 2026-07-28 06:53:26 +0100 |
|---|---|---|
| committer | Arturs Artamonovs <arturs.artamonovs@protonmail.com> | 2026-07-28 06:53:26 +0100 |
| commit | dabeb1603cf146aa671dddf949788b514b983b76 (patch) | |
| tree | c7293db2a5be0b81f315fe3f07df465723c399f6 /ShedCalc/Item.swift | |
| download | ShedCalc-dabeb1603cf146aa671dddf949788b514b983b76.tar.gz ShedCalc-dabeb1603cf146aa671dddf949788b514b983b76.zip | |
Initial Commit
Diffstat (limited to 'ShedCalc/Item.swift')
| -rw-r--r-- | ShedCalc/Item.swift | 18 |
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 + } +} |
