| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- using CommonObj.model;
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace CommonObj.lotoModel
- {
- public class Result
- {
- [JsonProperty("phoneNumber")]
- public string PhoneNumber { get; set; }
- [JsonProperty("responseDescription")]
- public string ResponseDescription { get; set; }
- [JsonProperty("transactionId")]
- public string TransactionId { get; set; }
- [JsonProperty("responseCode")]
- public string ResponseCode { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- public class topupWalletResponseObj
- {
- [JsonProperty("partnerCode")]
- public string PartnerCode { get; set; }
- [JsonProperty("requestId")]
- public string RequestId { get; set; }
- [JsonProperty("requestTime")]
- public DateTime RequestTime { get; set; }
- [JsonProperty("responseTime")]
- public DateTime ResponseTime { get; set; }
- [JsonProperty("status")]
- public string Status { get; set; }
- [JsonProperty("message")]
- public string Message { get; set; }
- [JsonProperty("result")]
- public Result Result { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- }
|