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