lotoCus.cs 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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 lotoCus
  9. {
  10. [JsonProperty("cusId")]
  11. public string cusId { get; set; }
  12. [JsonProperty("actStatus")]
  13. public string actStatus { get; set; }
  14. [JsonProperty("address")]
  15. public string address { get; set; }
  16. [JsonProperty("birthday")]
  17. public string birthday { get; set; }
  18. [JsonProperty("district")]
  19. public string district { get; set; }
  20. [JsonProperty("gentder")]
  21. public string gentder { get; set; }
  22. [JsonProperty("idno")]
  23. public string idno { get; set; }
  24. [JsonProperty("idtype")]
  25. public string idtype { get; set; }
  26. [JsonProperty("imageName1")]
  27. public string imageName1 { get; set; }
  28. [JsonProperty("imageName2")]
  29. public string imageName2 { get; set; }
  30. [JsonProperty("imageName3")]
  31. public string imageName3 { get; set; }
  32. [JsonProperty("imagePath")]
  33. public string imagePath { get; set; }
  34. [JsonProperty("isdn")]
  35. public string isdn { get; set; }
  36. [JsonProperty("language")]
  37. public string language { get; set; }
  38. [JsonProperty("precinct")]
  39. public string precinct { get; set; }
  40. [JsonProperty("province")]
  41. public string province { get; set; }
  42. [JsonProperty("subId")]
  43. public string subId { get; set; }
  44. [JsonProperty("subName")]
  45. public string subName { get; set; }
  46. [JsonProperty("isConfirm")]
  47. public string isConfirm { get; set; }
  48. [JsonProperty("date")]
  49. public string date { get; set; }
  50. [JsonProperty("lastUpdate")]
  51. public string lastUpdate { get; set; }
  52. public override string ToString()
  53. {
  54. return JsonConvert.SerializeObject(this);
  55. }
  56. }
  57. }