using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// MiniAppCategory Data Structure.
///
[Serializable]
public class MiniAppCategory : AopObject
{
///
/// 类目id
///
[XmlElement("category_id")]
public string CategoryId { get; set; }
///
/// 类目名称
///
[XmlElement("category_name")]
public string CategoryName { get; set; }
///
/// 是否有子类目
///
[XmlElement("has_child")]
public bool HasChild { get; set; }
///
/// 是否需要营业执照
///
[XmlElement("need_license")]
public bool NeedLicense { get; set; }
///
/// 是否需要门头照
///
[XmlElement("need_out_door_pic")]
public bool NeedOutDoorPic { get; set; }
///
/// 是否需要特许营业执照
///
[XmlElement("need_special_license")]
public bool NeedSpecialLicense { get; set; }
///
/// 父类目id
///
[XmlElement("parent_category_id")]
public string ParentCategoryId { get; set; }
}
}