Advertisement
Guest User

Untitled

a guest
Dec 15th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Swift 0.20 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
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement