subObjCheckStatus.cs 485 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using Newtonsoft.Json;
  6. namespace ResfullApi.Models
  7. {
  8. [Serializable]
  9. public class subObjCheckStatus
  10. {
  11. [JsonProperty("msisdn")]
  12. public string msisdn { get; set; }
  13. [JsonProperty("serviceId")]
  14. public string serviceid { get; set; }
  15. public override string ToString()
  16. {
  17. return JsonConvert.SerializeObject(this);
  18. }
  19. }
  20. }