| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- 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 expireDate
- {
- [JsonProperty("id")]
- public string id { get; set; }
- [JsonProperty("code")]
- public string code { get; set; }
- [JsonProperty("name")]
- public string name { get; set; }
- [JsonProperty("totalDay")]
- public string totalDay { get; set; }
- [JsonProperty("min")]
- public string min { get; set; }
- [JsonProperty("max")]
- public string max { 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("isActive")]
- public string isActive { get; set; }
-
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- public class expireDateList : Response
- {
- [JsonProperty("rowsOnPage")]
- public string rowsOnPage { get; set; }
- [JsonProperty("seqPage")]
- public string seqPage { get; set; }
- [JsonProperty("totalPage")]
- public string totalPage { get; set; }
- [JsonProperty("expireDateList")]
- public expireDate[] list { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- }
|