Initial Commit

This commit is contained in:
neon443
2024-12-24 12:54:10 +00:00
commit 3ae665e3d7
13 changed files with 929 additions and 0 deletions

18
NearFuture/Item.swift Normal file
View File

@@ -0,0 +1,18 @@
//
// Item.swift
// NearFuture
//
// Created by Nihaal Sharma on 24/12/2024.
//
import Foundation
import SwiftData
@Model
final class Item {
var timestamp: Date
init(timestamp: Date) {
self.timestamp = timestamp
}
}