16 lines
353 B
C#
16 lines
353 B
C#
|
|
using Newtonsoft.Json;
|
||
|
|
|
||
|
|
namespace Alipay.AopSdk.Core.Response
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// AlipayEcoMycarMaintainDataUpdateResponse.
|
||
|
|
/// </summary>
|
||
|
|
public class AlipayEcoMycarMaintainDataUpdateResponse : AopResponse
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 具体返回的处理结果
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("info")]
|
||
|
|
public string Info { get; set; }
|
||
|
|
}
|
||
|
|
}
|