using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// KoubeiRetailShopitemUploadModel Data Structure.
///
[Serializable]
public class KoubeiRetailShopitemUploadModel : AopObject
{
///
/// 上传的商品集合
///
[XmlArray("shop_items")]
[XmlArrayItem("request_ext_shop_item")]
public List ShopItems { get; set; }
}
}