lksReportTotal.cs 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using Newtonsoft.Json;
  6. namespace ResfullApi.Models
  7. {
  8. [Serializable]
  9. public class lksReportTotalObj
  10. {
  11. [JsonProperty("date")]
  12. public string date { get; set; }
  13. [JsonProperty("totalBet")]
  14. public string totalBet { get; set; }
  15. [JsonProperty("totalBetWin")]
  16. public string totalBetWin { get; set; }
  17. [JsonProperty("totalBetNotWin")]
  18. public string totalBetNotWin { get; set; }
  19. [JsonProperty("totalCoins")]
  20. public string totalCoins { get; set; }
  21. [JsonProperty("totalCoinsWin")]
  22. public string totalCoinsWin { get; set; }
  23. [JsonProperty("totalMoneyBuy")]
  24. public string totalMoneyBuy { get; set; }
  25. [JsonProperty("totalCoinsBuy")]
  26. public string totalCoinsBuy { get; set; }
  27. [JsonProperty("totalMoneyChange")]
  28. public string totalMoneyChange { get; set; }
  29. [JsonProperty("totalCoinsChange")]
  30. public string totalCoinsChange { get; set; }
  31. public override string ToString()
  32. {
  33. return JsonConvert.SerializeObject(this);
  34. }
  35. }
  36. public class lksReportTotalList
  37. {
  38. [JsonProperty("status")]
  39. public string status { get; set; }
  40. [JsonProperty("message")]
  41. public string message { get; set; }
  42. [JsonProperty("listOfDate")]
  43. public lksReportTotalObj[] listOfDate { get; set; }
  44. public override string ToString()
  45. {
  46. return JsonConvert.SerializeObject(this);
  47. }
  48. }
  49. }