| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using Newtonsoft.Json;
- namespace ApiProcess.Models.bet
- {
- public class betResWalletCusV2
- {
- [JsonProperty("actStatus")]
- public string actStatus { get; set; }
- [JsonProperty("address")]
- public string address { get; set; }
- [JsonProperty("birthDate")]
- public string birthDate { get; set; }
- [JsonProperty("district")]
- public string district { get; set; }
- [JsonProperty("gender")]
- public string gender { get; set; }
- [JsonProperty("idNo")]
- public string idNo { get; set; }
- [JsonProperty("idType")]
- public string idType { get; set; }
- [JsonProperty("imageName1")]
- public string imageName1 { get; set; }
- [JsonProperty("imageName2")]
- public string imageName2 { get; set; }
- [JsonProperty("imageName3")]
- public string imageName3 { get; set; }
- [JsonProperty("imagePath")]
- public string imagePath { get; set; }
- [JsonProperty("isdn")]
- public string isdn { get; set; }
- [JsonProperty("language")]
- public string language { get; set; }
- [JsonProperty("precinct")]
- public string precinct { get; set; }
- [JsonProperty("province")]
- public string province { get; set; }
- [JsonProperty("subId")]
- public string subId { get; set; }
- [JsonProperty("subName")]
- public string subName { get; set; }
- [JsonProperty("isConfirm")]
- public string isConfirm { get; set; }
-
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
-
- }
- public class betResWalletCusExtenV2 : ResCommnon
- {
-
-
- [JsonProperty("custormer")]
- public betResWalletCusV2 custormer { get; set; }
-
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- }
|