From dabeb1603cf146aa671dddf949788b514b983b76 Mon Sep 17 00:00:00 2001 From: Arturs Artamonovs Date: Tue, 28 Jul 2026 06:53:26 +0100 Subject: Initial Commit --- ShedCalc/Item.swift | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 ShedCalc/Item.swift (limited to 'ShedCalc/Item.swift') 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 + } +} -- cgit v1.2.3