using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using ApiProcess.Models.bet; using CommonObj.model; using Newtonsoft.Json; namespace ApiProcess.Models.balance { public class balanceObj { [JsonProperty("id")] public string id { get; set; } [JsonProperty("code")] public string code { get; set; } [JsonProperty("name")] public string name { get; set; } [JsonProperty("min")] public string min { get; set; } [JsonProperty("max")] public string max { get; set; } [JsonProperty("note")] public string isActive { get; set; } [JsonProperty("isActive")] public string note { get; set; } [JsonProperty("usersCreated")] public string usersCreated { get; set; } [JsonProperty("dateCreated")] public string dateCreated { get; set; } [JsonProperty("usersUpdate")] public string usersUpdate { get; set; } [JsonProperty("dateUpdate")] public string dateUpdate { get; set; } public override string ToString() { return JsonConvert.SerializeObject(this); } } public class balanceList : Response { [JsonProperty("rowsOnPage")] public string rowsOnPage { get; set; } [JsonProperty("seqPage")] public string seqPage { get; set; } [JsonProperty("totalPage")] public string totalPage { get; set; } [JsonProperty("balanceList")] public balanceObj[] list { get; set; } public override string ToString() { return JsonConvert.SerializeObject(this); } } public class shortCodeObj { [JsonProperty("id")] public string id { get; set; } [JsonProperty("name")] public string name { get; set; } public override string ToString() { return JsonConvert.SerializeObject(this); } } public class shortCodeList : Response { public shortCodeObj[] list { get; set; } public override string ToString() { return JsonConvert.SerializeObject(this); } } public class listSubObj { [JsonProperty("id")] public string id { get; set; } [JsonProperty("code")] public string code { get; set; } [JsonProperty("name")] public string name { get; set; } [JsonProperty("note")] public string note { get; set; } [JsonProperty("usersCreated")] public string usersCreated { get; set; } [JsonProperty("dateCreated")] public string dateCreated { get; set; } [JsonProperty("usersUpdate")] public string usersUpdate { get; set; } [JsonProperty("dateUpdate")] public string dateUpdate { get; set; } [JsonProperty("listType")] public string listType { get; set; } [JsonProperty("status")] public string status { get; set; } [JsonProperty("totalFile")] public string totalFile { get; set; } [JsonProperty("totalRecord")] public string totalRecord { get; set; } [JsonProperty("totalSuccess")] public string totalSuccess { get; set; } [JsonProperty("totalFalse")] public string totalFalse { get; set; } [JsonProperty("isDelete")] public string isDelete { get; set; } [JsonProperty("isActive")] public string isActive { get; set; } public override string ToString() { return JsonConvert.SerializeObject(this); } } public class listSubList : Response { [JsonProperty("rowsOnPage")] public string rowsOnPage { get; set; } [JsonProperty("seqPage")] public string seqPage { get; set; } [JsonProperty("totalPage")] public string totalPage { get; set; } [JsonProperty("list")] public listSubObj[] list { get; set; } public override string ToString() { return JsonConvert.SerializeObject(this); } } public class listSubFileObj { [JsonProperty("id")] public string id { get; set; } [JsonProperty("code")] public string code { get; set; } [JsonProperty("name")] public string name { get; set; } [JsonProperty("note")] public string note { get; set; } [JsonProperty("usersCreated")] public string usersCreated { get; set; } [JsonProperty("dateCreated")] public string dateCreated { get; set; } [JsonProperty("usersUpdate")] public string usersUpdate { get; set; } [JsonProperty("dateUpdate")] public string dateUpdate { get; set; } [JsonProperty("fileId")] public string fileId { get; set; } [JsonProperty("fileName")] public string fileName { get; set; } [JsonProperty("status")] public string status { get; set; } [JsonProperty("totalRecord")] public string totalRecord { get; set; } [JsonProperty("totalSuccess")] public string totalSuccess { get; set; } [JsonProperty("totalFalse")] public string totalFalse { get; set; } [JsonProperty("isDelete")] public string isDelete { get; set; } [JsonProperty("startDate")] public string startDate { get; set; } [JsonProperty("endDate")] public string endDate { get; set; } public override string ToString() { return JsonConvert.SerializeObject(this); } } public class listSubFileList : Response { [JsonProperty("rowsOnPage")] public string rowsOnPage { get; set; } [JsonProperty("seqPage")] public string seqPage { get; set; } [JsonProperty("totalPage")] public string totalPage { get; set; } [JsonProperty("list")] public listSubFileObj[] list { get; set; } public override string ToString() { return JsonConvert.SerializeObject(this); } } }