lotoExportGet.cs 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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 lotoExportGet
  9. {
  10. [JsonProperty("seq")]
  11. public string seq { get; set; }
  12. [JsonProperty("id")]
  13. public string id { get; set; }
  14. [JsonProperty("code")]
  15. public string code { get; set; }
  16. [JsonProperty("name")]
  17. public string name { get; set; }
  18. [JsonProperty("gameId")]
  19. public string gameId { get; set; }
  20. [JsonProperty("fromDate")]
  21. public string fromDate { get; set; }
  22. [JsonProperty("toDate")]
  23. public string toDate { get; set; }
  24. [JsonProperty("status")]
  25. public string status { get; set; }
  26. [JsonProperty("createUsers")]
  27. public string createUsers { get; set; }
  28. [JsonProperty("createDate")]
  29. public string createDate { get; set; }
  30. [JsonProperty("acceptUsers")]
  31. public string acceptUsers { get; set; }
  32. [JsonProperty("acceptDate")]
  33. public string acceptDate { get; set; }
  34. [JsonProperty("moneySystem")]
  35. public string moneySystem { get; set; }
  36. [JsonProperty("moneyImport")]
  37. public string moneyImport { get; set; }
  38. [JsonProperty("moneyNotImport")]
  39. public string moneyNotImport { get; set; }
  40. [JsonProperty("moneyNotSys")]
  41. public string moneyNotSys { get; set; }
  42. public override string ToString()
  43. {
  44. return JsonConvert.SerializeObject(this);
  45. }
  46. }
  47. public class lotoExportGetList : ResCommnon
  48. {
  49. [JsonProperty("rowsOnPage")]
  50. public string rowsOnPage { get; set; }
  51. [JsonProperty("seqPage")]
  52. public string seqPage { get; set; }
  53. [JsonProperty("totalPage")]
  54. public string totalPage { get; set; }
  55. [JsonProperty("totalRow")]
  56. public string totalRow { get; set; }
  57. [JsonProperty("listLotoExportGet")]
  58. public lotoExportGet[] listLotoExportGet { get; set; }
  59. public override string ToString()
  60. {
  61. return JsonConvert.SerializeObject(this);
  62. }
  63. }
  64. }