using CommonObj.model; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Text; namespace CommonObj.lotoModel { public class termNotDraw { [JsonProperty("createDate")] public string createDate { get; set; } [JsonProperty("startDate")] public string startDate { get; set; } [JsonProperty("endDate")] public string endDate { get; set; } [JsonProperty("randomDate")] public string randomDate { get; set; } [JsonProperty("status")] public string status { get; set; } [JsonProperty("id")] public string id { get; set; } [JsonProperty("g1")] public string g1 { get; set; } [JsonProperty("g2")] public string g2 { get; set; } [JsonProperty("g3")] public string g3 { get; set; } [JsonProperty("g4")] public string g4 { get; set; } [JsonProperty("g5")] public string g5 { get; set; } [JsonProperty("g6")] public string g6 { get; set; } [JsonProperty("g7")] public string g7 { get; set; } [JsonProperty("g1Draw")] public string g1Draw { get; set; } [JsonProperty("g2Draw")] public string g2Draw { get; set; } [JsonProperty("g3Draw")] public string g3Draw { get; set; } [JsonProperty("g4Draw")] public string g4Draw { get; set; } [JsonProperty("g5Draw")] public string g5Draw { get; set; } [JsonProperty("g6Draw")] public string g6Draw { get; set; } [JsonProperty("g7Draw")] public string g7Draw { get; set; } } public class listTermNotDraw : Response { [JsonProperty("list")] public termNotDraw[] list { get; set; } public override string ToString() { return JsonConvert.SerializeObject(this); } } }