Initial Commit
This commit is contained in:
21
Workouts/Item.swift
Normal file
21
Workouts/Item.swift
Normal file
@ -0,0 +1,21 @@
|
||||
//
|
||||
// Item.swift
|
||||
// Workouts
|
||||
//
|
||||
// Created by rzen on 7/11/25 at 5:04 PM.
|
||||
//
|
||||
// Copyright 2025 Rouslan Zenetl. All Rights Reserved.
|
||||
//
|
||||
|
||||
|
||||
import Foundation
|
||||
import SwiftData
|
||||
|
||||
@Model
|
||||
final class Item {
|
||||
var timestamp: Date
|
||||
|
||||
init(timestamp: Date) {
|
||||
self.timestamp = timestamp
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user