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

30 lines
642 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayPassCodeAddResponse.
/// </summary>
public class AlipayPassCodeAddResponse : AopResponse
{
/// <summary>
/// 成功时返回业务参数
/// </summary>
[JsonProperty("biz_result")]
public List<string> BizResult { get; set; }
/// <summary>
/// 返回码.
/// </summary>
[JsonProperty("error_code")]
public string ErrorCode { get; set; }
/// <summary>
/// 是否发码成功的标识。
/// </summary>
[JsonProperty("success")]
public bool Success { get; set; }
}
}