using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Aop.Api.Domain;
namespace Aop.Api.Response
{
///
/// AlipayEbppInvoiceEinvpackageQueryResponse.
///
public class AlipayEbppInvoiceEinvpackageQueryResponse : AopResponse
{
///
/// 发票包明细数据
///
[XmlArray("package_item_info_list")]
[XmlArrayItem("package_item_open_info")]
public List PackageItemInfoList { get; set; }
}
}