cmsTraficTotal.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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 cmsTraficTotal
  9. {
  10. [JsonProperty("seq")]
  11. public string seq { get; set; }
  12. [JsonProperty("gameName")]
  13. public string gameName { get; set; }
  14. [JsonProperty("total")]
  15. public string total { get; set; }
  16. [JsonProperty("moneyBeforeTax")]
  17. public string moneyBeforeTax { get; set; }
  18. [JsonProperty("tax")]
  19. public string tax { get; set; }
  20. [JsonProperty("moneyTax")]
  21. public string moneyTax { get; set; }
  22. [JsonProperty("moneyAfterTax")]
  23. public string moneyAfterTax { get; set; }
  24. public override string ToString()
  25. {
  26. return JsonConvert.SerializeObject(this);
  27. }
  28. }
  29. public class cmsTraficTotalList : ResCommnon
  30. {
  31. [JsonProperty("list")]
  32. public cmsTraficTotal[] list { get; set; }
  33. public override string ToString()
  34. {
  35. return JsonConvert.SerializeObject(this);
  36. }
  37. }
  38. }