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.

19 lines
453 B
C#

9 months ago
using System;
using System.Xml.Serialization;
using Aop.Api.Domain;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayMarketingCardOpenResponse.
/// </summary>
public class AlipayMarketingCardOpenResponse : AopResponse
{
/// <summary>
/// 商户卡信息(包括支付宝分配的业务卡号)
/// </summary>
[XmlElement("card_info")]
public MerchantCard CardInfo { get; set; }
}
}