| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using Newtonsoft.Json;
- namespace CommonObj.model
- {
- public class mpsResponse
- {
- [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);
- }
- }
- }
|