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