Initial Commit

This commit is contained in:
link2026
2026-05-25 12:12:47 +08:00
commit 9b2f27e691
12 changed files with 949 additions and 0 deletions

18
体己/Item.swift Normal file
View File

@@ -0,0 +1,18 @@
//
// 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
}
}