using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// AntMerchantExpandFrontcategorySecurityModifyModel Data Structure.
///
[Serializable]
public class AntMerchantExpandFrontcategorySecurityModifyModel : AopObject
{
///
/// 前台类目描述
///
[XmlElement("description")]
public string Description { get; set; }
///
/// 前台类目ID
///
[XmlElement("front_category_id")]
public string FrontCategoryId { get; set; }
///
/// 素材列表(会和前台类目已存在素材做差异化比较后做增删改操作)
///
[XmlArray("material_list")]
[XmlArrayItem("material_modify_info")]
public List MaterialList { get; set; }
///
/// 前台类目名称
///
[XmlElement("name")]
public string Name { get; set; }
}
}