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