lotoExportData.cs 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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 lotoExportData
  9. {
  10. [JsonProperty("seq")]
  11. public string seq { get; set; }
  12. [JsonProperty("winnerId")]
  13. public string winnerId { get; set; }
  14. [JsonProperty("msisdn")]
  15. public string msisdn { get; set; }
  16. [JsonProperty("date")]
  17. public string date { get; set; }
  18. [JsonProperty("gameId")]
  19. public string gameId { get; set; }
  20. [JsonProperty("randomId")]
  21. public string randomId { get; set; }
  22. [JsonProperty("betId")]
  23. public string betId { get; set; }
  24. [JsonProperty("isPayOnline")]
  25. public string isPayOnline { get; set; }
  26. [JsonProperty("isPay")]
  27. public string isPay { get; set; }
  28. [JsonProperty("winnerCode")]
  29. public string winnerCode { get; set; }
  30. [JsonProperty("winnerName")]
  31. public string winnerName { get; set; }
  32. [JsonProperty("money")]
  33. public string money { get; set; }
  34. public override string ToString()
  35. {
  36. return JsonConvert.SerializeObject(this);
  37. }
  38. }
  39. public class lotoExportDataList : ResCommnon
  40. {
  41. [JsonProperty("rowsOnPage")]
  42. public string rowsOnPage { get; set; }
  43. [JsonProperty("seqPage")]
  44. public string seqPage { get; set; }
  45. [JsonProperty("totalPage")]
  46. public string totalPage { get; set; }
  47. [JsonProperty("totalRow")]
  48. public string totalRow { get; set; }
  49. [JsonProperty("listLotoExportData")]
  50. public lotoExportData[] listLotoExportData { get; set; }
  51. public override string ToString()
  52. {
  53. return JsonConvert.SerializeObject(this);
  54. }
  55. }
  56. }