This repository has been archived on 2026-02-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
bytenews/Bytenews/Item.swift
T
2025-03-29 10:33:57 +01:00

19 lines
240 B
Swift

//
// Item.swift
// Bytenews
//
// Created by Erick Ahmed on 29/03/25.
//
import Foundation
import SwiftData
@Model
final class Item {
var timestamp: Date
init(timestamp: Date) {
self.timestamp = timestamp
}
}