]> git.r.bdr.sh - rbdr/captura/blob - Captura/Item.swift
22587d86a6504fba82b0be915d3f6fc7b4ce3d55
[rbdr/captura] / Captura / Item.swift
1 //
2 // Item.swift
3 // Captura
4 //
5 // Created by Ruben Beltran del Rio on 7/24/23.
6 //
7
8 import Foundation
9 import SwiftData
10
11 @Model
12 final class Item {
13 var timestamp: Date
14
15 init(timestamp: Date) {
16 self.timestamp = timestamp
17 }
18 }