| 1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using Newtonsoft.Json;
- namespace ResfullApi.Models
- {
- [Serializable]
- public class subObjCheckStatus
- {
- [JsonProperty("msisdn")]
- public string msisdn { get; set; }
- [JsonProperty("serviceId")]
- public string serviceid { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- }
|