Skip to content

Instantly share code, notes, and snippets.

@pgpt10
Created November 5, 2017 14:04
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 pgpt10/91b8d3cfee2997d7f3ca6a608f304652 to your computer and use it in GitHub Desktop.
Save pgpt10/91b8d3cfee2997d7f3ca6a608f304652 to your computer and use it in GitHub Desktop.
struct Photo: Codable
{
var title: String
var size: Size
enum CodingKeys: String, CodingKey
{
case title = "name"
case size
}
}
struct Size: Codable
{
var width: Double
var height: Double
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment