| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using Newtonsoft.Json;
- namespace ApiProcess.Models.bet
- {
- public class betTicketObj
- {
- [JsonProperty("seq")]
- public string seq { get; set; }
- [JsonProperty("id")]
- public string id { get; set; }
- [JsonProperty("money")]
- public string money { get; set; }
- [JsonProperty("code")]
- public string code { get; set; }
- [JsonProperty("createDate")]
- public string createDate { get; set; }
- [JsonProperty("termId")]
- public string termId { get; set; }
- [JsonProperty("status")]
- public string status { get; set; }
- [JsonProperty("paymentCode")]
- public string paymentCode { get; set; }
- [JsonProperty("paymentMessage")]
- public string paymentMessage { get; set; }
- [JsonProperty("split")]
- public string split { get; set; }
- [JsonProperty("billCode")]
- public string billCode { get; set; }
- [JsonProperty("channel")]
- public string channel { get; set; }
- [JsonProperty("channelPayment")]
- public string channelPayment { get; set; }
- [JsonProperty("termStartDate")]
- public string termStartDate { get; set; }
- [JsonProperty("termEndDate")]
- public string termEndDate { get; set; }
- [JsonProperty("termRandomDate")]
- public string termRandomDate { get; set; }
- [JsonProperty("termResult")]
- public string termResult { get; set; }
- [JsonProperty("isEvening")]
- public string isEvening { get; set; }
- [JsonProperty("moneyWin")]
- public string moneyWin { get; set; }
- [JsonProperty("gameId")]
- public string gameId { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- public class betTicketObjList : ResCommnon
- {
- [JsonProperty("rowsOnPage")]
- public string rowsOnPage { get; set; }
- [JsonProperty("seqPage")]
- public string seqPage { get; set; }
- [JsonProperty("totalPage")]
- public string totalPage { get; set; }
- [JsonProperty("listTicket")]
- public betTicketObj[] listTicket { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- }
|