Files
stackdex_neu/StackDex/Item.swift
2026-04-18 17:17:40 +02:00

19 lines
245 B
Swift

//
// Item.swift
// StackDex
//
// Created by Matthias Meister on 18.04.26.
//
import Foundation
import SwiftData
@Model
final class Item {
var timestamp: Date
init(timestamp: Date) {
self.timestamp = timestamp
}
}