using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Newtonsoft.Json; namespace ApiProcess.Models.bet { public class lotoBlackGet { [JsonProperty("seq")] public string seq { get; set; } [JsonProperty("id")] public string id { get; set; } [JsonProperty("msisdn")] public string msisdn { get; set; } [JsonProperty("date")] public string date { get; set; } [JsonProperty("users")] public string users { get; set; } [JsonProperty("isLock")] public string isLock { get; set; } [JsonProperty("note")] public string note { get; set; } public override string ToString() { return JsonConvert.SerializeObject(this); } } public class lotoBlackGetList : 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("listLotoBlackList")] public lotoBlackGet[] listLotoBlackList { get; set; } public override string ToString() { return JsonConvert.SerializeObject(this); } } }