// // Item.swift // 体己 // // Created by Tim on 2026/5/25. // import Foundation import SwiftData @Model final class Item { var timestamp: Date init(timestamp: Date) { self.timestamp = timestamp } }