cmsTotalByTerm.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. using Newtonsoft.Json;
  6. namespace ApiProcess.Models.bet
  7. {
  8. public class cmsTotalByTerm
  9. {
  10. [JsonProperty("randomId")]
  11. public string randomId { get; set; }
  12. [JsonProperty("startDate")]
  13. public string startDate { get; set; }
  14. [JsonProperty("endDate")]
  15. public string endDate { get; set; }
  16. [JsonProperty("result")]
  17. public string result { get; set; }
  18. [JsonProperty("status")]
  19. public string status { get; set; }
  20. [JsonProperty("money")]
  21. public string money { get; set; }
  22. [JsonProperty("moneyWin")]
  23. public string moneyWin { get; set; }
  24. [JsonProperty("rate")]
  25. public string rate { get; set; }
  26. public override string ToString()
  27. {
  28. return JsonConvert.SerializeObject(this);
  29. }
  30. }
  31. public class cmsTotalByTermList : ResCommnon
  32. {
  33. [JsonProperty("list")]
  34. public cmsTotalByTerm[] list { get; set; }
  35. public override string ToString()
  36. {
  37. return JsonConvert.SerializeObject(this);
  38. }
  39. }
  40. }