betResWalletCusV2.cs 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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 betResWalletCusV2
  9. {
  10. [JsonProperty("actStatus")]
  11. public string actStatus { get; set; }
  12. [JsonProperty("address")]
  13. public string address { get; set; }
  14. [JsonProperty("birthDate")]
  15. public string birthDate { get; set; }
  16. [JsonProperty("district")]
  17. public string district { get; set; }
  18. [JsonProperty("gender")]
  19. public string gender { get; set; }
  20. [JsonProperty("idNo")]
  21. public string idNo { get; set; }
  22. [JsonProperty("idType")]
  23. public string idType { get; set; }
  24. [JsonProperty("imageName1")]
  25. public string imageName1 { get; set; }
  26. [JsonProperty("imageName2")]
  27. public string imageName2 { get; set; }
  28. [JsonProperty("imageName3")]
  29. public string imageName3 { get; set; }
  30. [JsonProperty("imagePath")]
  31. public string imagePath { get; set; }
  32. [JsonProperty("isdn")]
  33. public string isdn { get; set; }
  34. [JsonProperty("language")]
  35. public string language { get; set; }
  36. [JsonProperty("precinct")]
  37. public string precinct { get; set; }
  38. [JsonProperty("province")]
  39. public string province { get; set; }
  40. [JsonProperty("subId")]
  41. public string subId { get; set; }
  42. [JsonProperty("subName")]
  43. public string subName { get; set; }
  44. [JsonProperty("isConfirm")]
  45. public string isConfirm { get; set; }
  46. public override string ToString()
  47. {
  48. return JsonConvert.SerializeObject(this);
  49. }
  50. }
  51. public class betResWalletCusExtenV2 : ResCommnon
  52. {
  53. [JsonProperty("custormer")]
  54. public betResWalletCusV2 custormer { get; set; }
  55. public override string ToString()
  56. {
  57. return JsonConvert.SerializeObject(this);
  58. }
  59. }
  60. }