Files
bible/Bible-Week/Item.swift
2026-09-04 12:43:10 -03:00

19 lines
249 B
Swift

//
// Item.swift
// Bible-Week
//
// Created by Matheus A Silveira on 04/09/26.
//
import Foundation
import SwiftData
@Model
final class Item {
var timestamp: Date
init(timestamp: Date) {
self.timestamp = timestamp
}
}