Skip to content

Instantly share code, notes, and snippets.

@Kdan
Last active April 10, 2018 16:51
Show Gist options
  • Save Kdan/7949af03a32af2bef0980260daa92038 to your computer and use it in GitHub Desktop.
Save Kdan/7949af03a32af2bef0980260daa92038 to your computer and use it in GitHub Desktop.
class Pet: Codable {
let name: String
}
class Cat: Pet {
var lives: Int
}
class Dog: Pet {
func fetch() { /**/ }
}
class Person: Codable {
let name: String
let pets: [Pet]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment