// // Item.swift // Thijooree iOS // // Created by Mohamed Azim on 6/6/26. // import Foundation import SwiftData @Model final class Item { var timestamp: Date init(timestamp: Date) { self.timestamp = timestamp } }