Files
Outpost/Outpost/Item.swift
T

19 lines
249 B
Swift

//
// Item.swift
// Outpost
//
// Created by Puranjay Savar Mattas on 12/08/26.
//
import Foundation
import SwiftData
@Model
final class Item {
var timestamp: Date
init(timestamp: Date) {
self.timestamp = timestamp
}
}