| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using ApiProcess.Models.bet;
- using Newtonsoft.Json;
- namespace ApiProcess.Models.balance
- {
- public class blackListObj
- {
- [JsonProperty("msisdn")]
- public string msisdn { get; set; }
- [JsonProperty("action")]
- public string action { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- public class blackImportDataList
- {
- [JsonProperty("type")]
- public string type { get; set; }
- [JsonProperty("serviceId")]
- public string serviceId { get; set; }
- [JsonProperty("campaignId")]
- public string campaignId { get; set; }
- [JsonProperty("users")]
- public string users { get; set; }
- [JsonProperty("data")]
- public blackListObj[] data { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- }
|