using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayEbppInvoiceTitleListGetResponse. /// public class AlipayEbppInvoiceTitleListGetResponse : AopResponse { /// /// 抬头列表 /// [XmlArray("title_list")] [XmlArrayItem("invoice_title_model")] public List TitleList { get; set; } } }