using System; using System.Collections.Generic; using System.Linq; using System.Web; using Newtonsoft.Json; namespace ResfullApi.Models { public class mpsResponse1 { [JsonProperty("status")] public string status { get; set; } [JsonProperty("message")] public string message { get; set; } [JsonProperty("requestID")] public string requestID { get; set; } [JsonProperty("responseCode")] public string responseCode { get; set; } [JsonProperty("msisdn")] public string msisdn { get; set; } [JsonProperty("cmd")] public string cmd { get; set; } [JsonProperty("money")] public string money { get; set; } [JsonProperty("source")] public string source { get; set; } [JsonProperty("otpType")] public string otpType { get; set; } public override string ToString() { return JsonConvert.SerializeObject(this); } } }