summaryrefslogtreecommitdiffstats
path: root/Solverv/Item.swift
blob: d15a7c0c76968f06837cb344ae1bfa92dc6b4d4e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
//  Item.swift
//  Solverv
//
//  Created by Ivar Løvlie on 15/12/2025.
//

import Foundation
import SwiftData

@Model
final class Item {
    var timestamp: Date
    
    init(timestamp: Date) {
        self.timestamp = timestamp
    }
}