Initial Commit

This commit is contained in:
2025-07-11 17:04:32 -04:00
parent e7166bacca
commit ba81f06c56
12 changed files with 573 additions and 0 deletions

21
Workouts/Item.swift Normal file
View File

@ -0,0 +1,21 @@
//
// Item.swift
// Workouts
//
// Created by rzen on 7/11/25 at 5:04PM.
//
// Copyright 2025 Rouslan Zenetl. All Rights Reserved.
//
import Foundation
import SwiftData
@Model
final class Item {
var timestamp: Date
init(timestamp: Date) {
self.timestamp = timestamp
}
}