You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
672 B
C#

9 months ago
using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayEcardEduPublicBindResponse.
/// </summary>
public class AlipayEcardEduPublicBindResponse : AopResponse
{
/// <summary>
/// 机构编码
/// </summary>
[XmlElement("agent_code")]
public string AgentCode { get; set; }
/// <summary>
/// 卡号
/// </summary>
[XmlElement("card_no")]
public string CardNo { get; set; }
/// <summary>
/// 成功
/// </summary>
[XmlElement("return_code")]
public string ReturnCode { get; set; }
}
}