| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using ApiProcess.Models.bet;
- using CommonObj.model;
- using Newtonsoft.Json;
- namespace ApiProcess.Models.balance
- {
- public class blackListGetList
- {
- [JsonProperty("id")]
- public string id { get; set; }
- [JsonProperty("msisdn")]
- public string msisdn { get; set; }
- [JsonProperty("type")]
- public string type { get; set; }
- [JsonProperty("serviceId")]
- public string serviceId { get; set; }
- [JsonProperty("campaignId")]
- public string campaignId { get; set; }
- [JsonProperty("sysdate")]
- public string sysdate { get; set; }
- [JsonProperty("users")]
- public string users { get; set; }
- [JsonProperty("campaignName")]
- public string campaignName { get; set; }
- [JsonProperty("isActive")]
- public string isActive { get; set; }
-
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- public class blackListGetListArr : Response
- {
-
- [JsonProperty("list")]
- public blackListGetList[] list { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- }
|