| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using Newtonsoft.Json;
- namespace ApiProcess.Models.bet
- {
- public class lotoImportData
- {
- [JsonProperty("winnerId")]
- public string winnerId { get; set; }
- [JsonProperty("msisdn")]
- public string msisdn { get; set; }
- [JsonProperty("money")]
- public string money { get; set; }
- [JsonProperty("randomId")]
- public string randomId { get; set; }
- [JsonProperty("betId")]
- public string betId { get; set; }
- [JsonProperty("winnerCode")]
- public string winnerCode { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- public class lotoImportDataList
- {
-
- [JsonProperty("exportId")]
- public string exportId { get; set; }
- [JsonProperty("data")]
- public lotoImportData[] data { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- }
|