| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using Newtonsoft.Json;
- namespace ResfullApi.Models
- {
- [Serializable]
- public class lksReportTotalObj
- {
- [JsonProperty("date")]
- public string date { get; set; }
- [JsonProperty("totalBet")]
- public string totalBet { get; set; }
- [JsonProperty("totalBetWin")]
- public string totalBetWin { get; set; }
- [JsonProperty("totalBetNotWin")]
- public string totalBetNotWin { get; set; }
- [JsonProperty("totalCoins")]
- public string totalCoins { get; set; }
- [JsonProperty("totalCoinsWin")]
- public string totalCoinsWin { get; set; }
- [JsonProperty("totalMoneyBuy")]
- public string totalMoneyBuy { get; set; }
- [JsonProperty("totalCoinsBuy")]
- public string totalCoinsBuy { get; set; }
- [JsonProperty("totalMoneyChange")]
- public string totalMoneyChange { get; set; }
- [JsonProperty("totalCoinsChange")]
- public string totalCoinsChange { get; set; }
-
-
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- public class lksReportTotalList
- {
- [JsonProperty("status")]
- public string status { get; set; }
- [JsonProperty("message")]
- public string message { get; set; }
- [JsonProperty("listOfDate")]
- public lksReportTotalObj[] listOfDate { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- }
|