-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAPIResponseModel.cs
30 lines (29 loc) · 1.09 KB
/
APIResponseModel.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using System;
namespace GameApi
{
public class APIResponseModel
{
public class Root
{
public string? internalName { get; set; }
public string? title { get; set; }
public string? metacriticLink { get; set; }
public string? dealID { get; set; }
public string? storeID { get; set; }
public string? gameID { get; set; }
public string? salePrice { get; set; }
public string? normalPrice { get; set; }
public string? isOnSale { get; set; }
public string? savings { get; set; }
public string? metacriticScore { get; set; }
public string? steamRatingText { get; set; }
public string? steamRatingPercent { get; set; }
public string? steamRatingCount { get; set; }
public string? steamAppID { get; set; }
public int releaseDate { get; set; }
public int lastChange { get; set; }
public string? dealRating { get; set; }
public string? thumb { get; set; }
}
}
}