Skip to content

Instantly share code, notes, and snippets.

@rbreve
Created October 7, 2019 10:21
Show Gist options
  • Save rbreve/29fa9c79d496c05f35b32412e8cb7a39 to your computer and use it in GitHub Desktop.
Save rbreve/29fa9c79d496c05f35b32412e8cb7a39 to your computer and use it in GitHub Desktop.
struct Movie: Decodable, Identifiable {
public var id: Int
public var name: String
public var released: String
enum CodingKeys: String, CodingKey {
case id = "id"
case name = "title"
case released = "year"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment