| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- 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);
- }
- }
- }
|