using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayOpenMiniItemBatchqueryResponse. /// public class AlipayOpenMiniItemBatchqueryResponse : AopResponse { /// /// 小程序商品列表 /// [XmlArray("result_obj")] [XmlArrayItem("item_v_o")] public List ResultObj { get; set; } } }