| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using Newtonsoft.Json;
- namespace ApiProcess.Models
- {
- public class blackObj
- {
- [JsonProperty("msisdn")]
- public string msisdn { get; set; }
- [JsonProperty("userName")]
- public string userName { get; set; }
- [JsonProperty("isBlackList")]
- public string isBlackList { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- public class blackObjList
- {
- [JsonProperty("data")]
- public blackObj[] data { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- }
|