Advertisement
developerjustin

Untitled

Mar 22nd, 2014
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.48 KB | None | 0 0
  1. public class Attraction
  2. {
  3.     public string uid { get; set; }
  4.     public string name { get; set; }
  5.     public string type { get; set; }
  6.     public string customIcon { get; set; }
  7. }
  8.  
  9. public class Area
  10. {
  11.     public string name { get; set; }
  12.     public string image { get; set; }
  13.     public List<double> rgbColor { get; set; }
  14.     public List<Attraction> attractions { get; set; }
  15. }
  16.  
  17. public class RootObject
  18. {
  19.     public string name { get; set; }
  20.     public List<Area> areas { get; set; }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement