using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Newtonsoft.Json; namespace ApiProcess.Models.bet { public class objParams : ResCommnon { [JsonProperty("paramList")] public objParam[] paramList { get; set; } public override string ToString() { return JsonConvert.SerializeObject(this); } public objParams() { } } public class objParam { [JsonProperty("id")] public string id { get; set; } [JsonProperty("codeGroup")] public string codeGroup { get; set; } [JsonProperty("code")] public string code { get; set; } [JsonProperty("values")] public string values { get; set; } [JsonProperty("display")] public string display { get; set; } [JsonProperty("channel")] public string channel { get; set; } } }