Files
Thijooree-iOS/Thijooree iOS/Item.swift
T
2026-06-06 02:29:29 +05:00

19 lines
244 B
Swift

//
// Item.swift
// Thijooree iOS
//
// Created by Mohamed Azim on 6/6/26.
//
import Foundation
import SwiftData
@Model
final class Item {
var timestamp: Date
init(timestamp: Date) {
self.timestamp = timestamp
}
}