12345678910111213141516171819202122 |
- using Newtonsoft.Json;
- namespace Common.Request.samecity
- {
- public class SameCityQueryParam
- {
-
-
-
- public string taskId { get; set; }
-
-
-
- public string orderId { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore });
- }
- }
- }
|