| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using Newtonsoft.Json;
- namespace ApiProcess.Models.bet
- {
- public class lotoExportData
- {
- [JsonProperty("seq")]
- public string seq { get; set; }
- [JsonProperty("winnerId")]
- public string winnerId { get; set; }
- [JsonProperty("msisdn")]
- public string msisdn { get; set; }
- [JsonProperty("date")]
- public string date { 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; }
- [JsonProperty("money")]
- public string money { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- public class lotoExportDataList : 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("listLotoExportData")]
- public lotoExportData[] listLotoExportData { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- }
|