summaryrefslogtreecommitdiff
path: root/Tonbo/Item.swift
blob: a2f85bf37049f524c573833ad67c7901198c44af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import Foundation
import SwiftData

@Model
final class Item {
    var timestamp: Date

    init(timestamp: Date) {
        self.timestamp = timestamp
    }
}