| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using Newtonsoft.Json;
- namespace ApiProcess.Models.bet
- {
- public class cmsTicketWin
- {
- [JsonProperty("seq")]
- public string seq { get; set; }
- [JsonProperty("id")]
- public string id { get; set; }
-
- [JsonProperty("date")]
- public string date { get; set; }
- [JsonProperty("msisdn")]
- public string msisdn { get; set; }
- [JsonProperty("gameId")]
- public string gameId { get; set; }
- [JsonProperty("randomId")]
- public string randomId { get; set; }
- [JsonProperty("betId")]
- public string betId { get; set; }
- [JsonProperty("isPayOnline")]
- public string isPayOnline { get; set; }
- [JsonProperty("isPay")]
- public string isPay { get; set; }
- [JsonProperty("winnerCode")]
- public string winnerCode { get; set; }
- [JsonProperty("winnerName")]
- public string winnerName { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- public class cmsTicketWinList : 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("listTicketWin")]
- public cmsTicketWin[] listTicketWin { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- }
|