| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using Newtonsoft.Json;
- namespace ApiProcess.Models.bet
- {
- public class betGetTerm
- {
- [JsonProperty("seq")]
- public string seq { get; set; }
- [JsonProperty("id")]
- public string id { get; set; }
- [JsonProperty("status")]
- public string status { get; set; }
- [JsonProperty("date_start")]
- public string date_start { get; set; }
- [JsonProperty("date_end")]
- public string date_end { get; set; }
- [JsonProperty("date_random")]
- public string date_random { get; set; }
- [JsonProperty("money_winner")]
- public string money_winner { get; set; }
- [JsonProperty("gameId")]
- public string gameId { get; set; }
- [JsonProperty("result")]
- public string result { get; set; }
- [JsonProperty("split")]
- public string split { get; set; }
- [JsonProperty("countDownSeconds")]
- public string countDownSeconds { get; set; }
- [JsonProperty("isEvening")]
- public string isEvening { get; set; }
- [JsonProperty("numberGame")]
- public string numberGame { get; set; }
- [JsonProperty("win4Game")]
- public string win4Game { get; set; }
- [JsonProperty("bolet")]
- public string bolet { get; set; }
- [JsonProperty("mariaj")]
- public string mariaj { get; set; }
- [JsonProperty("lotto3")]
- public string lotto3 { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- public class betGetTermList : ResCommnon
- {
- [JsonProperty("rowsOnPage")]
- public string rowsOnPage { get; set; }
- [JsonProperty("seqPage")]
- public string seqPage { get; set; }
- [JsonProperty("totalPage")]
- public string totalPage { get; set; }
- [JsonProperty("totalRow")]
- public string totalRow { get; set; }
- [JsonProperty("gameId")]
- public string gameId { get; set; }
- [JsonProperty("listTerm")]
- public betGetTerm[] listTerm { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- public class moneyPrizeOfTerm : ResCommnon
- {
- [JsonProperty("id")]
- public string id { get; set; }
- [JsonProperty("startDate")]
- public string startDate { get; set; }
- [JsonProperty("endDate")]
- public string endDate { get; set; }
- [JsonProperty("randomDate")]
- public string randomDate { get; set; }
- [JsonProperty("money")]
- public string money { get; set; }
- [JsonProperty("status")]
- public string status { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- public class prizeObj
- {
- [JsonProperty("id")]
- public string id { get; set; }
- [JsonProperty("name")]
- public string name { get; set; }
- [JsonProperty("code")]
- public string code { get; set; }
- [JsonProperty("money")]
- public string money { get; set; }
-
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- public class prizeList : ResCommnon
- {
-
- [JsonProperty("list")]
- public prizeObj[] list { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- }
|