using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AdCreative Data Structure. /// [Serializable] public class AdCreative : AopObject { /// /// 广告物料包含的物料列表 /// [XmlArray("ad_material_list")] [XmlArrayItem("ad_material")] public List AdMaterialList { get; set; } /// /// 创意名称 /// [XmlElement("ad_name")] public string AdName { get; set; } /// /// 所属广告单元ID /// [XmlElement("group_id")] public long GroupId { get; set; } /// /// 创意使用模板ID /// [XmlElement("template_id")] public long TemplateId { get; set; } } }