using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Newtonsoft.Json; namespace ApiProcess.Models.bet { public class lotoCus { [JsonProperty("cusId")] public string cusId { get; set; } [JsonProperty("actStatus")] public string actStatus { get; set; } [JsonProperty("address")] public string address { get; set; } [JsonProperty("birthday")] public string birthday { get; set; } [JsonProperty("district")] public string district { get; set; } [JsonProperty("gentder")] public string gentder { 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; } [JsonProperty("date")] public string date { get; set; } [JsonProperty("lastUpdate")] public string lastUpdate { get; set; } public override string ToString() { return JsonConvert.SerializeObject(this); } } }