// // Item.swift // Captura // // Created by Ruben Beltran del Rio on 7/24/23. // import Foundation import SwiftData @Model final class Item { var timestamp: Date init(timestamp: Date) { self.timestamp = timestamp } }