1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
// // Item.swift // iGopherBrowser // // Created by Navan Chauhan on 12/12/23. // import Foundation import SwiftData @Model final class Item { var timestamp: Date init(timestamp: Date) { self.timestamp = timestamp } }