// // 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 } }