12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- using Newtonsoft.Json;
- using System.Collections.Generic;
- namespace Common.Request.Label
- {
- public class CustomPrintParam
- {
-
-
-
-
- public Dictionary<string, object> customParam;
-
-
-
-
- public string direction;
-
-
-
-
- public string siid;
-
-
-
-
- public string callBackUrl;
-
-
-
-
- public string tempId;
-
-
-
-
-
-
-
-
-
- public string printType;
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore });
- }
- }
- }
|