Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayEcoMycarDataExternalSendResponse.cs

22 lines
493 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayEcoMycarDataExternalSendResponse.
/// </summary>
public class AlipayEcoMycarDataExternalSendResponse : AopResponse
{
/// <summary>
/// 20
/// </summary>
[JsonProperty("external_system_name")]
public string ExternalSystemName { get; set; }
/// <summary>
/// outter_response
/// </summary>
[JsonProperty("process_result")]
public string ProcessResult { get; set; }
}
}