IceCubesApp/Packages/Models/Sources/Models/Card.swift

14 lines
254 B
Swift
Raw Normal View History

2022-12-19 15:34:57 +00:00
import Foundation
public struct Card: Codable, Identifiable {
public var id: String {
url.absoluteString
}
2023-01-17 10:36:01 +00:00
2022-12-19 15:34:57 +00:00
public let url: URL
public let title: String?
public let description: String?
public let type: String
public let image: URL?
}