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 paramObj { [JsonProperty("id")] public string id { get; set; } [JsonProperty("code")] public string code { get; set; } [JsonProperty("values")] public string values { get; set; } [JsonProperty("note")] public string note { get; set; } [JsonProperty("status")] public string status { get; set; } [JsonProperty("codeGroup")] public string codeGroup { get; set; } [JsonProperty("display0")] public string display0 { get; set; } [JsonProperty("display1")] public string display1 { get; set; } [JsonProperty("display2")] public string display2 { get; set; } [JsonProperty("display3")] public string display3 { get; set; } [JsonProperty("display4")] public string display4 { get; set; } [JsonProperty("display5")] public string display5 { get; set; } [JsonProperty("gameId")] public string gameId { get; set; } [JsonProperty("channel")] public string channel { get; set; } public override string ToString() { return JsonConvert.SerializeObject(this); } } public class paramObjList : Response { [JsonProperty("rowsOnPage")] public string rowsOnPage { get; set; } [JsonProperty("seqPage")] public string seqPage { get; set; } [JsonProperty("totalPage")] public string totalPage { get; set; } [JsonProperty("paramObjList")] public paramObj[] list { get; set; } public override string ToString() { return JsonConvert.SerializeObject(this); } } }