12345678910111213141516171819202122232425262728293031323334353637 |
- using Newtonsoft.Json;
- namespace Common.Request.Subscribe
- {
- public class SubscribeParam
- {
-
- public string company {get; set;}
-
- public string number {get; set;}
-
- public string from {get; set;}
-
- public string to {get; set;}
-
- public string key {get; set;}
-
- public SubscribeParameters parameters {get; set;}
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this,Formatting.Indented,new JsonSerializerSettings(){NullValueHandling = NullValueHandling.Ignore});
- }
- }
- }
|