| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- using CommonObj.model;
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace CommonObj.lotoModel
- {
- public class mtObj
- {
-
- [JsonProperty("id")]
- public string id { get; set; }
- [JsonProperty("msisdn")]
- public string msisdn { get; set; }
- [JsonProperty("message")]
- public string message { get; set; }
- [JsonProperty("sendTime")]
- public string sendTime { get; set; }
- [JsonProperty("receiveTime")]
- public string receiveTime { get; set; }
- [JsonProperty("status")]
- public string status { get; set; }
- [JsonProperty("channel")]
- public string channel { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- public class mtList: Response
- {
-
- [JsonProperty("list")]
- public mtObj[] list { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
-
- }
- }
|