using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Newtonsoft.Json; namespace ApiProcess.Models.bet { public class cmsRevenue { [JsonProperty("date")] public string date { get; set; } [JsonProperty("gameId")] public string gameId { get; set; } [JsonProperty("totalUser")] public string totalUser { get; set; } [JsonProperty("totalTicket")] public string totalTicket { get; set; } [JsonProperty("totalMoney")] public string totalMoney { get; set; } [JsonProperty("totalTicketWin")] public string totalTicketWin { get; set; } [JsonProperty("totalMoneyWin")] public string totalMoneyWin { get; set; } [JsonProperty("rate")] public string rate { get; set; } public override string ToString() { return JsonConvert.SerializeObject(this); } } public class cmsRevenueList : ResCommnon { [JsonProperty("rowsOnPage")] public string rowsOnPage { get; set; } [JsonProperty("seqPage")] public string seqPage { get; set; } [JsonProperty("totalPage")] public string totalPage { get; set; } [JsonProperty("totalRow")] public string totalRow { get; set; } [JsonProperty("listRevenue")] public cmsRevenue[] listRevenue { get; set; } public override string ToString() { return JsonConvert.SerializeObject(this); } } }