Guest User

Untitled

a guest
Dec 15th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. struct APOD: Codable {
  2. ...
  3. let imageURL: URL
  4. ...
  5.  
  6. enum CodingKeys: String, CodingKey {
  7. case title
  8. case explanation
  9. case imageURL = "url"
  10. case date
  11. }
  12. }
Add Comment
Please, Sign In to add comment