| 123456789101112131415161718192021222324252627282930313233 |
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace CommonObj.model
- {
- public class blacklistObj
- {
- [JsonProperty("id")]
- public string id { get; set; }
- [JsonProperty("msisdn")]
- public string msisdn { get; set; }
- [JsonProperty("type")]
- public string type { get; set; }
- [JsonProperty("svId")]
- public string svId { get; set; }
-
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- }
|