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