using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// AlipayOpenAppAppcontentItemBatchqueryModel Data Structure.
///
[Serializable]
public class AlipayOpenAppAppcontentItemBatchqueryModel : AopObject
{
///
/// 商品ID列表;最多20个ID
///
[XmlArray("item_ids")]
[XmlArrayItem("string")]
public List ItemIds { get; set; }
}
}