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

16 lines
382 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayTrustUserAuthSendResponse.
/// </summary>
public class AlipayTrustUserAuthSendResponse : AopResponse
{
/// <summary>
/// 当授权通知发送成功时为T否则用业务错误码表示
/// </summary>
[JsonProperty("result")]
public string Result { get; set; }
}
}