using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// Category Data Structure.
///
[Serializable]
public class Category : AopObject
{
///
/// 店铺分类ID集合
///
[XmlArray("shop_cate_ids")]
[XmlArrayItem("string")]
public List ShopCateIds { get; set; }
///
/// 美食/娱乐等分类条目
///
[XmlElement("shop_cate_name")]
public string ShopCateName { get; set; }
}
}