termNotDraw.cs 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. using CommonObj.model;
  2. using Newtonsoft.Json;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Text;
  6. namespace CommonObj.lotoModel
  7. {
  8. public class termNotDraw
  9. {
  10. [JsonProperty("createDate")]
  11. public string createDate { get; set; }
  12. [JsonProperty("startDate")]
  13. public string startDate { get; set; }
  14. [JsonProperty("endDate")]
  15. public string endDate { get; set; }
  16. [JsonProperty("randomDate")]
  17. public string randomDate { get; set; }
  18. [JsonProperty("status")]
  19. public string status { get; set; }
  20. [JsonProperty("id")]
  21. public string id { get; set; }
  22. [JsonProperty("g1")]
  23. public string g1 { get; set; }
  24. [JsonProperty("g2")]
  25. public string g2 { get; set; }
  26. [JsonProperty("g3")]
  27. public string g3 { get; set; }
  28. [JsonProperty("g4")]
  29. public string g4 { get; set; }
  30. [JsonProperty("g5")]
  31. public string g5 { get; set; }
  32. [JsonProperty("g6")]
  33. public string g6 { get; set; }
  34. [JsonProperty("g7")]
  35. public string g7 { get; set; }
  36. [JsonProperty("g1Draw")]
  37. public string g1Draw { get; set; }
  38. [JsonProperty("g2Draw")]
  39. public string g2Draw { get; set; }
  40. [JsonProperty("g3Draw")]
  41. public string g3Draw { get; set; }
  42. [JsonProperty("g4Draw")]
  43. public string g4Draw { get; set; }
  44. [JsonProperty("g5Draw")]
  45. public string g5Draw { get; set; }
  46. [JsonProperty("g6Draw")]
  47. public string g6Draw { get; set; }
  48. [JsonProperty("g7Draw")]
  49. public string g7Draw { get; set; }
  50. }
  51. public class listTermNotDraw : Response
  52. {
  53. [JsonProperty("list")]
  54. public termNotDraw[] list { get; set; }
  55. public override string ToString()
  56. {
  57. return JsonConvert.SerializeObject(this);
  58. }
  59. }
  60. }