using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// KbVirtualShopInfo Data Structure.
///
[Serializable]
public class KbVirtualShopInfo : AopObject
{
///
/// 门店信息
///
[XmlArray("catetory_list")]
[XmlArrayItem("kbdish_virtual_category_info")]
public List CatetoryList { get; set; }
///
/// 口碑门店id
///
[XmlElement("shop_id")]
public string ShopId { get; set; }
}
}