blacklistObj.cs 588 B

123456789101112131415161718192021222324252627282930313233
  1. using Newtonsoft.Json;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace CommonObj.model
  6. {
  7. public class blacklistObj
  8. {
  9. [JsonProperty("id")]
  10. public string id { get; set; }
  11. [JsonProperty("msisdn")]
  12. public string msisdn { get; set; }
  13. [JsonProperty("type")]
  14. public string type { get; set; }
  15. [JsonProperty("svId")]
  16. public string svId { get; set; }
  17. public override string ToString()
  18. {
  19. return JsonConvert.SerializeObject(this);
  20. }
  21. }
  22. }