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