12345678910111213141516171819202122232425262728 |
- using Newtonsoft.Json;
- namespace Common.Request.cloud
- {
- public class CommandParam {
-
-
-
- public string content {get; set;}
-
-
-
- public string siid {get; set;}
-
-
-
- public string salt {get; set;}
-
-
-
- public string callBackUrl {get; set;}
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this,Formatting.Indented,new JsonSerializerSettings(){NullValueHandling = NullValueHandling.Ignore});
- }
- }
- }
|