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