// // Item.swift // TallyFlow // // Created by 송예찬 on 6/26/26. // import Foundation import SwiftData @Model final class Item { var timestamp: Date init(timestamp: Date) { self.timestamp = timestamp } }