aboutsummaryrefslogtreecommitdiff
path: root/iGopherBrowser/Item.swift
blob: b6c02d8aca2c974a0d5a5584937e59e47040ef9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
//  Item.swift
//  iGopherBrowser
//
//  Created by Navan Chauhan on 12/12/23.
//

import Foundation
import SwiftData

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