mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2025-02-11 15:25:15 +00:00
15 lines
292 B
Swift
15 lines
292 B
Swift
import Foundation
|
|
|
|
public struct Card: Codable, Identifiable, Equatable, Hashable {
|
|
public var id: String {
|
|
url
|
|
}
|
|
|
|
public let url: String
|
|
public let title: String?
|
|
public let description: String?
|
|
public let type: String
|
|
public let image: URL?
|
|
}
|
|
|
|
extension Card: Sendable {}
|