Skip to content

Instantly share code, notes, and snippets.

@damijanracel
Last active February 13, 2018 08:33
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 damijanracel/c6eb15220db22764bd120814d2aa9c32 to your computer and use it in GitHub Desktop.
Save damijanracel/c6eb15220db22764bd120814d2aa9c32 to your computer and use it in GitHub Desktop.
User and Pet
struct User {
let name: String
let nickname: String
}
struct Pet {
let name: String
let owner: String
let breed: String
let weight: Int
let avatar: UIImage?
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment