@@ -159,6 +159,27 @@ internal class SupportInfo
159159 public string Email { get ; set ; }
160160 }
161161
162+ internal class Price
163+ {
164+ [ JsonProperty ( "currency" ) ]
165+ public string Currency { get ; set ; }
166+
167+ [ JsonProperty ( "initial" ) ]
168+ public uint Initial { get ; set ; }
169+
170+ [ JsonProperty ( "final" ) ]
171+ public uint Final { get ; set ; }
172+
173+ [ JsonProperty ( "discount_percent" ) ]
174+ public uint DiscountPercent { get ; set ; }
175+
176+ [ JsonProperty ( "initial_formatted" ) ]
177+ public string InitialFormatted { get ; set ; }
178+
179+ [ JsonProperty ( "final_formatted" ) ]
180+ public string FinalFormatted { get ; set ; }
181+ }
182+
162183 internal class Data
163184 {
164185 [ JsonProperty ( "type" ) ]
@@ -185,6 +206,9 @@ internal class Data
185206 [ JsonProperty ( "about_the_game" ) ]
186207 public string AboutTheGame { get ; set ; }
187208
209+ [ JsonProperty ( "short_description" ) ]
210+ public string ShortDescription { get ; set ; }
211+
188212 [ JsonProperty ( "supported_languages" ) ]
189213 public string SupportedLanguages { get ; set ; }
190214
@@ -206,6 +230,9 @@ internal class Data
206230 [ JsonProperty ( "developers" ) ]
207231 public string [ ] Developers { get ; set ; }
208232
233+ [ JsonProperty ( "price_overview" ) ]
234+ public Price PriceOverview { get ; set ; }
235+
209236 [ JsonProperty ( "publishers" ) ]
210237 public string [ ] Publishers { get ; set ; }
211238
@@ -255,4 +282,4 @@ internal class AppDetailsContainer
255282 [ JsonProperty ( "data" ) ]
256283 public Data Data { get ; set ; }
257284 }
258- }
285+ }
0 commit comments