using CommonObj.model; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Text; namespace CommonObj.lotoModel { public class rpTotalByDayConvetMoneyObj { [JsonProperty("date")] public string date { get; set; } [JsonProperty("total")] public string total { get; set; } [JsonProperty("money")] public string money { get; set; } [JsonProperty("totalSuccess")] public string totalSuccess { get; set; } [JsonProperty("moneySuccess")] public string moneySuccess { get; set; } [JsonProperty("totalPending")] public string totalPending { get; set; } [JsonProperty("moneyPending")] public string moneyPending { get; set; } [JsonProperty("totalRevert")] public string totalRevert { get; set; } [JsonProperty("moneyRevert")] public string moneyRevert { get; set; } public override string ToString() { return JsonConvert.SerializeObject(this); } } public class rpTotalByDayConvetMoneyListObj : Response { [JsonProperty("list")] public rpTotalByDayConvetMoneyObj[] list { get; set; } public override string ToString() { return JsonConvert.SerializeObject(this); } } public class rpTotalByDayObj { [JsonProperty("date")] public string date { get; set; } [JsonProperty("player")] public string player { get; set; } [JsonProperty("ticket")] public string ticket { get; set; } [JsonProperty("money")] public string money { get; set; } [JsonProperty("palyerWin")] public string palyerWin { get; set; } [JsonProperty("ticketWin")] public string ticketWin { get; set; } [JsonProperty("moneyWin")] public string moneyWin { get; set; } [JsonProperty("benefit")] public string benefit { get; set; } [JsonProperty("sharing")] public string sharing { get; set; } public override string ToString() { return JsonConvert.SerializeObject(this); } } public class rpTotalByDayPrizeBoletObj { [JsonProperty("date")] public string date { get; set; } [JsonProperty("player")] public string player { get; set; } [JsonProperty("ticket")] public string ticket { get; set; } [JsonProperty("money")] public string money { get; set; } [JsonProperty("palyerWin")] public string palyerWin { get; set; } [JsonProperty("ticketWin")] public string ticketWin { get; set; } [JsonProperty("moneyWin")] public string moneyWin { get; set; } [JsonProperty("ticketWinLot1")] public string ticketWinLot1 { get; set; } [JsonProperty("moneyWinLot1")] public string moneyWinLot1 { get; set; } [JsonProperty("ticketWinLot2")] public string ticketWinLot2 { get; set; } [JsonProperty("moneyWinLot2")] public string moneyWinLot2 { get; set; } [JsonProperty("ticketWinLot3")] public string ticketWinLot3 { get; set; } [JsonProperty("moneyWinLot3")] public string moneyWinLot3 { get; set; } public override string ToString() { return JsonConvert.SerializeObject(this); } } public class rpTotalByDayListObj : Response { [JsonProperty("list")] public rpTotalByDayObj[] list { get; set; } public override string ToString() { return JsonConvert.SerializeObject(this); } } public class rpTotalByDayPrizwBoletListObj : Response { [JsonProperty("list")] public rpTotalByDayPrizeBoletObj[] list { get; set; } public override string ToString() { return JsonConvert.SerializeObject(this); } } }