Created
April 8, 2019 02:08
-
-
Save juliantejera/8d871b85d669158fd4b096479eabdd73 to your computer and use it in GitHub Desktop.
Human and Alien Models
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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