Advertisement
Guest User

Untitled

a guest
Apr 26th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.98 KB | None | 0 0
  1. public class Rootobject
  2. {
  3. public Meta meta { get; set; }
  4. public Response response { get; set; }
  5. }
  6.  
  7. public class Meta
  8. {
  9. public int status { get; set; }
  10. }
  11.  
  12. public class Response
  13. {
  14. public Hit[] hits { get; set; }
  15. }
  16.  
  17. public class Hit
  18. {
  19. public object[] highlights { get; set; }
  20. public string index { get; set; }
  21. public string type { get; set; }
  22. public Result result { get; set; }
  23. }
  24.  
  25. public class Result
  26. {
  27. public int annotation_count { get; set; }
  28. public string api_path { get; set; }
  29. public string full_title { get; set; }
  30. public string header_image_thumbnail_url { get; set; }
  31. public string header_image_url { get; set; }
  32. public int id { get; set; }
  33. public int lyrics_owner_id { get; set; }
  34. public string lyrics_state { get; set; }
  35. public string path { get; set; }
  36. public int? pyongs_count { get; set; }
  37. public string song_art_image_thumbnail_url { get; set; }
  38. public Stats stats { get; set; }
  39. public string title { get; set; }
  40. public string title_with_featured { get; set; }
  41. public string url { get; set; }
  42. public Primary_Artist primary_artist { get; set; }
  43. }
  44.  
  45. public class Stats
  46. {
  47. public bool hot { get; set; }
  48. public int unreviewed_annotations { get; set; }
  49. public int concurrents { get; set; }
  50. public int pageviews { get; set; }
  51. }
  52.  
  53. public class Primary_Artist
  54. {
  55. public string api_path { get; set; }
  56. public string header_image_url { get; set; }
  57. public int id { get; set; }
  58. public string image_url { get; set; }
  59. public bool is_meme_verified { get; set; }
  60. public bool is_verified { get; set; }
  61. public string name { get; set; }
  62. public string url { get; set; }
  63. public int iq { get; set; }
  64. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement