using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// SubShopInfo Data Structure.
///
[Serializable]
public class SubShopInfo : AopObject
{
///
/// 门店信息集合
///
[XmlArray("shop_list")]
[XmlArrayItem("shop")]
public List ShopList { get; set; }
}
}