using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// SceneMarketingHeader Data Structure.
///
[Serializable]
public class SceneMarketingHeader : AopObject
{
///
/// 图标地址
///
[XmlElement("icon")]
public string Icon { get; set; }
///
/// 子标题
///
[XmlElement("sub_title")]
public string SubTitle { get; set; }
///
/// 简要描述
///
[XmlElement("summary")]
public string Summary { get; set; }
///
/// 标签
///
[XmlArray("tags")]
[XmlArrayItem("string")]
public List Tags { get; set; }
///
/// 标题
///
[XmlElement("title")]
public string Title { get; set; }
///
/// 跳转地址
///
[XmlElement("url")]
public string Url { get; set; }
}
}