// // Category.swift // Todos // // Created by Sam Jaffe on 2/28/26. // import Foundation import SwiftData @Model final class Category { var timestamp: Date var name: String init(timestamp: Date) { self.timestamp = timestamp self.name = "New Category" } }