import Foundation struct Bookmark: Codable, Identifiable, Hashable { let id: UUID let tags: [String] let createdAt: Date init(id: UUID = UUID(), tags: [String]) { createdAt = Date() self.id = id self.tags = tags } }