| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- using CommonObj.model;
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace CommonObj.lotoModel
- {
- public class result
- {
- [JsonProperty("accountState")]
- public string AccountState { get; set; }
- [JsonProperty("role")]
- public string Role { get; set; }
- [JsonProperty("msisdn")]
- public string Msisdn { get; set; }
- [JsonProperty("registerDate")]
- public string RegisterDate { get; set; }
-
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- public class walletCheckExists
- {
- [JsonProperty("status")]
- public string Status { get; set; }
- [JsonProperty("timestamp")]
- public string Timestamp { get; set; }
- [JsonProperty("message")]
- public string Message { get; set; }
- [JsonProperty("result")]
- public result Result { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- }
|