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