betResWalletCus.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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 betResWalletCus
  9. {
  10. [JsonProperty("Idsn")]
  11. public string Idsn { get; set; }
  12. [JsonProperty("Name")]
  13. public string Name { get; set; }
  14. [JsonProperty("IdNo")]
  15. public string IdNo { get; set; }
  16. [JsonProperty("IdType")]
  17. public string IdType { get; set; }
  18. [JsonProperty("Address")]
  19. public string Address { get; set; }
  20. [JsonProperty("Gender")]
  21. public string Gender { get; set; }
  22. [JsonProperty("DoB")]
  23. public string DoB { get; set; }
  24. [JsonProperty("Balance")]
  25. public string Balance { get; set; }
  26. [JsonProperty("ActiveDate")]
  27. public string ActiveDate { get; set; }
  28. [JsonProperty("RefId")]
  29. public string RefId { get; set; }
  30. [JsonProperty("CustomerCode")]
  31. public string CustomerCode { get; set; }
  32. public override string ToString()
  33. {
  34. return JsonConvert.SerializeObject(this);
  35. }
  36. }
  37. public class betResWalletCusExten : ResCommnon
  38. {
  39. [JsonProperty("custormer")]
  40. public betResWalletCus custormer { get; set; }
  41. public override string ToString()
  42. {
  43. return JsonConvert.SerializeObject(this);
  44. }
  45. }
  46. }