mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-12-25 08:30:41 +00:00
13 lines
254 B
Swift
13 lines
254 B
Swift
import Foundation
|
|
|
|
public struct Card: Codable, Identifiable {
|
|
public var id: String {
|
|
url.absoluteString
|
|
}
|
|
|
|
public let url: URL
|
|
public let title: String?
|
|
public let description: String?
|
|
public let type: String
|
|
public let image: URL?
|
|
}
|