18 lines
285 B
Swift
18 lines
285 B
Swift
|
//
|
||
|
// Item.swift
|
||
|
// Swipe That Pic
|
||
|
//
|
||
|
// Created by Amine Bou on 26/07/2024.
|
||
|
//
|
||
|
|
||
|
import Foundation
|
||
|
import SwiftData
|
||
|
|
||
|
@Model
|
||
|
final class Item {
|
||
|
@Attribute(.unique) var localIdentfier: String
|
||
|
init(localIdentfier: String) {
|
||
|
self.localIdentfier = localIdentfier
|
||
|
}
|
||
|
}
|