Advertisement
Guest User

Untitled

a guest
Dec 15th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Swift 0.22 KB | None | 0 0
  1. struct Image: Decodable {
  2.     id:Int
  3.     contentUrl: String
  4. }
  5.  
  6. struct ImageModel: Decodable {
  7.     var id: Int
  8.     var name: String
  9.     var description: String
  10.     var new: Bool
  11.     var poular: Bool
  12.     var image: Image // it's Image
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement