Gastrack/gastrack/Item.swift
2025-02-23 21:59:14 +13:00

19 lines
244 B
Swift

//
// Item.swift
// gastrack
//
// Created by Pradyun Setti on 23/02/2025.
//
import Foundation
import SwiftData
@Model
final class Item {
var timestamp: Date
init(timestamp: Date) {
self.timestamp = timestamp
}
}