Skip to content

Instantly share code, notes, and snippets.

@juliantejera
Created April 8, 2019 02:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juliantejera/8d871b85d669158fd4b096479eabdd73 to your computer and use it in GitHub Desktop.
Save juliantejera/8d871b85d669158fd4b096479eabdd73 to your computer and use it in GitHub Desktop.
Human and Alien Models
struct Human: Decodable {
let age: Int
let name: String
}
struct Alien: Decodable {
let humans: [Human]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment