Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayMobilePublicAccountResetResponse.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

28 lines
614 B
C#

using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayMobilePublicAccountResetResponse.
/// </summary>
public class AlipayMobilePublicAccountResetResponse : AopResponse
{
/// <summary>
/// 这是新账户绑定成功后产生的协议号
/// </summary>
[JsonProperty("agreement_id")]
public string AgreementId { get; set; }
/// <summary>
/// 结果码
/// </summary>
[JsonProperty("code")]
public string Code { get; set; }
/// <summary>
/// 结果信息
/// </summary>
[JsonProperty("msg")]
public string Msg { get; set; }
}
}