Created
November 5, 2017 14:04
-
-
Save pgpt10/91b8d3cfee2997d7f3ca6a608f304652 to your computer and use it in GitHub Desktop.
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 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