Skip to content

Instantly share code, notes, and snippets.

@pietrobasso
Created January 11, 2022 20:49
Show Gist options
  • Save pietrobasso/1c33da65c7784db7f72ec9afc5a98815 to your computer and use it in GitHub Desktop.
Save pietrobasso/1c33da65c7784db7f72ec9afc5a98815 to your computer and use it in GitHub Desktop.
Widget models
import Foundation
struct HeaderWidget: Decodable {
let title: String
let subtitle: String
}
struct CardWidget: Decodable {
let title: String
let image: URL
let operation: URL
}
struct ButtonWidget: Decodable {
let title: String
let operation: URL
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment