summaryrefslogtreecommitdiff
path: root/WaterfallFile_UI/Item.swift
blob: f20bc8d3f0077655f6481d711268fdf6040e676c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
//  Item.swift
//  WaterfallFile_UI
//
//  Created by Jacky Jack on 23/12/2024.
//

import Foundation
import SwiftData

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