using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Newtonsoft.Json; namespace ApiProcess.Models.bet { public class lotoExportGet { [JsonProperty("seq")] public string seq { get; set; } [JsonProperty("id")] public string id { get; set; } [JsonProperty("code")] public string code { get; set; } [JsonProperty("name")] public string name { get; set; } [JsonProperty("gameId")] public string gameId { get; set; } [JsonProperty("fromDate")] public string fromDate { get; set; } [JsonProperty("toDate")] public string toDate { get; set; } [JsonProperty("status")] public string status { get; set; } [JsonProperty("createUsers")] public string createUsers { get; set; } [JsonProperty("createDate")] public string createDate { get; set; } [JsonProperty("acceptUsers")] public string acceptUsers { get; set; } [JsonProperty("acceptDate")] public string acceptDate { get; set; } [JsonProperty("moneySystem")] public string moneySystem { get; set; } [JsonProperty("moneyImport")] public string moneyImport { get; set; } [JsonProperty("moneyNotImport")] public string moneyNotImport { get; set; } [JsonProperty("moneyNotSys")] public string moneyNotSys { get; set; } public override string ToString() { return JsonConvert.SerializeObject(this); } } public class lotoExportGetList : 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("listLotoExportGet")] public lotoExportGet[] listLotoExportGet { get; set; } public override string ToString() { return JsonConvert.SerializeObject(this); } } }