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); } } }