lotoTopCus.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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 lotoTopCus: lotoCus
  9. {
  10. [JsonProperty("seq")]
  11. public string seq { get; set; }
  12. [JsonProperty("money")]
  13. public string money { get; set; }
  14. public override string ToString()
  15. {
  16. return JsonConvert.SerializeObject(this);
  17. }
  18. }
  19. public class lotoTopCusList : ResCommnon
  20. {
  21. [JsonProperty("rowsOnPage")]
  22. public string rowsOnPage { get; set; }
  23. [JsonProperty("seqPage")]
  24. public string seqPage { get; set; }
  25. [JsonProperty("totalPage")]
  26. public string totalPage { get; set; }
  27. [JsonProperty("totalRow")]
  28. public string totalRow { get; set; }
  29. [JsonProperty("listLotoCusTop")]
  30. public lotoTopCus[] listLotoCusTop { get; set; }
  31. public override string ToString()
  32. {
  33. return JsonConvert.SerializeObject(this);
  34. }
  35. }
  36. }