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