Files
keevault/MyPass/Item.swift
T

19 lines
244 B
Swift
Raw Normal View History

2026-05-21 22:04:13 +02:00
//
// Item.swift
// MyPass
//
// Created by Christophe Vila on 21/05/2026.
//
import Foundation
import SwiftData
@Model
final class Item {
var timestamp: Date
init(timestamp: Date) {
self.timestamp = timestamp
}
}