using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AntMerchantExpandFrontcategorySecurityCreateModel Data Structure. /// [Serializable] public class AntMerchantExpandFrontcategorySecurityCreateModel : AopObject { /// /// 前台类目描述 /// [XmlElement("description")] public string Description { get; set; } /// /// 素材列表(最多3个) /// [XmlArray("material_list")] [XmlArrayItem("material_create_info")] public List MaterialList { get; set; } /// /// 前台类目名称 /// [XmlElement("name")] public string Name { get; set; } /// /// 场景码(具体值请参见产品文档) /// [XmlElement("scene")] public string Scene { get; set; } /// /// 前台类目归属主体ID 例:前台类目归属主体类型为店铺,则前台类目归属主体ID为店铺ID; /// [XmlElement("target_id")] public string TargetId { get; set; } /// /// 前台类目归属主体类型: 5(店铺) /// [XmlElement("target_type")] public string TargetType { get; set; } } }