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

10 lines
186 B
Swift
Raw Normal View History

2022-12-19 15:34:57 +00:00
import Foundation
public struct Card: Codable {
public let url: URL
public let title: String?
public let description: String?
public let type: String
public let image: URL?
}