Skip to content

Instantly share code, notes, and snippets.

@stevencurtis
Created May 7, 2020 11:27
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 stevencurtis/b0d2f0cf4127dddd04634bf551506d7f to your computer and use it in GitHub Desktop.
Save stevencurtis/b0d2f0cf4127dddd04634bf551506d7f to your computer and use it in GitHub Desktop.
nestedstructs
struct User: Codable {
var gender: String
var name: Name
}
struct Name: Codable {
var title: String
var first: String
var last: String
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment