this repo has no description
at main 499 B view raw
1// 2// Item.swift 3// AtProtoBackup 4// 5// Created by Corey Alexander on 8/25/25. 6// 7 8import Foundation 9import SwiftData 10 11 12@Model 13final class Account { 14 var did: String 15 var handle: String 16 var pds: String 17 var jsonResponse: Data? 18 19 init(did: String, handle: String, pds: String, jsonResponse: Data? = nil) { 20 print("[Account] Creating new Account - DID: \(did), Handle: \(handle)") 21 self.did = did 22 self.handle = handle 23 self.pds = pds 24 self.jsonResponse = jsonResponse 25 } 26}