using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayOpenAppAppcontentItemBatchqueryResponse. /// public class AlipayOpenAppAppcontentItemBatchqueryResponse : AopResponse { /// /// 商品信息 /// [XmlArray("items")] [XmlArrayItem("app_content_item")] public List Items { get; set; } } }