Advertisement
Guest User

Untitled

a guest
May 22nd, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.41 KB | None | 0 0
  1. public class PcRequirements
  2. {
  3. public string minimum { get; set; }
  4. }
  5.  
  6. public class MacRequirements
  7. {
  8. public string minimum { get; set; }
  9. }
  10.  
  11. public class LinuxRequirements
  12. {
  13. public string minimum { get; set; }
  14. }
  15.  
  16. public class PriceOverview
  17. {
  18. public string currency { get; set; }
  19. public int initial { get; set; }
  20. public int final { get; set; }
  21. public int discount_percent { get; set; }
  22. }
  23.  
  24. public class Sub
  25. {
  26. public int packageid { get; set; }
  27. public string percent_savings_text { get; set; }
  28. public int percent_savings { get; set; }
  29. public string option_text { get; set; }
  30. public string option_description { get; set; }
  31. public string can_get_free_license { get; set; }
  32. public bool is_free_license { get; set; }
  33. public int price_in_cents_with_discount { get; set; }
  34. }
  35.  
  36. public class PackageGroup
  37. {
  38. public string name { get; set; }
  39. public string title { get; set; }
  40. public string description { get; set; }
  41. public string selection_text { get; set; }
  42. public string save_text { get; set; }
  43. public int display_type { get; set; }
  44. public string is_recurring_subscription { get; set; }
  45. public List<Sub> subs { get; set; }
  46. }
  47.  
  48. public class Platforms
  49. {
  50. public bool windows { get; set; }
  51. public bool mac { get; set; }
  52. public bool linux { get; set; }
  53. }
  54.  
  55. public class Metacritic
  56. {
  57. public int score { get; set; }
  58. public string url { get; set; }
  59. }
  60.  
  61. public class Category
  62. {
  63. public int id { get; set; }
  64. public string description { get; set; }
  65. }
  66.  
  67. public class Genre
  68. {
  69. public string id { get; set; }
  70. public string description { get; set; }
  71. }
  72.  
  73. public class Screenshot
  74. {
  75. public int id { get; set; }
  76. public string path_thumbnail { get; set; }
  77. public string path_full { get; set; }
  78. }
  79.  
  80. public class Webm
  81. {
  82. public string __invalid_name__480 { get; set; }
  83. public string max { get; set; }
  84. }
  85.  
  86. public class Movie
  87. {
  88. public int id { get; set; }
  89. public string name { get; set; }
  90. public string thumbnail { get; set; }
  91. public Webm webm { get; set; }
  92. public bool highlight { get; set; }
  93. }
  94.  
  95. public class Recommendations
  96. {
  97. public int total { get; set; }
  98. }
  99.  
  100. public class Highlighted
  101. {
  102. public string name { get; set; }
  103. public string path { get; set; }
  104. }
  105.  
  106. public class Achievements
  107. {
  108. public int total { get; set; }
  109. public List<Highlighted> highlighted { get; set; }
  110. }
  111.  
  112. public class ReleaseDate
  113. {
  114. public bool coming_soon { get; set; }
  115. public string date { get; set; }
  116. }
  117.  
  118. public class SupportInfo
  119. {
  120. public string url { get; set; }
  121. public string email { get; set; }
  122. }
  123.  
  124. public class Data
  125. {
  126. public string type { get; set; }
  127. public string name { get; set; }
  128. public int steam_appid { get; set; }
  129. public int required_age { get; set; }
  130. public bool is_free { get; set; }
  131. public string controller_support { get; set; }
  132. public string detailed_description { get; set; }
  133. public string about_the_game { get; set; }
  134. public string short_description { get; set; }
  135. public string supported_languages { get; set; }
  136. public string header_image { get; set; }
  137. public string website { get; set; }
  138. public PcRequirements pc_requirements { get; set; }
  139. public MacRequirements mac_requirements { get; set; }
  140. public LinuxRequirements linux_requirements { get; set; }
  141. public List<string> developers { get; set; }
  142. public List<string> publishers { get; set; }
  143. public PriceOverview price_overview { get; set; }
  144. public List<int> packages { get; set; }
  145. public List<PackageGroup> package_groups { get; set; }
  146. public Platforms platforms { get; set; }
  147. public Metacritic metacritic { get; set; }
  148. public List<Category> categories { get; set; }
  149. public List<Genre> genres { get; set; }
  150. public List<Screenshot> screenshots { get; set; }
  151. public List<Movie> movies { get; set; }
  152. public Recommendations recommendations { get; set; }
  153. public Achievements achievements { get; set; }
  154. public ReleaseDate release_date { get; set; }
  155. public SupportInfo support_info { get; set; }
  156. public string background { get; set; }
  157. }
  158.  
  159. public class __invalid_type__730
  160. {
  161. public bool success { get; set; }
  162. public Data data { get; set; }
  163. }
  164.  
  165. public class RootObject
  166. {
  167. public __invalid_type__730 __invalid_name__730 { get; set; }
  168. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement