using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// MiniActivityModuleQueryInfo Data Structure.
///
[Serializable]
public class MiniActivityModuleQueryInfo : AopObject
{
///
/// 行动点文案
///
[XmlElement("action_text")]
public string ActionText { get; set; }
///
/// 记录唯一标识
///
[XmlElement("id")]
public string Id { get; set; }
///
/// 图片链接
///
[XmlElement("image")]
public string Image { get; set; }
///
/// logo
///
[XmlElement("logo")]
public string Logo { get; set; }
///
/// 小程序id
///
[XmlElement("mini_app_id")]
public string MiniAppId { get; set; }
///
/// 小程序页面
///
[XmlElement("page")]
public string Page { get; set; }
///
/// 副标题
///
[XmlElement("sub_title")]
public string SubTitle { get; set; }
///
/// 标题
///
[XmlElement("title")]
public string Title { get; set; }
///
/// 跳转链接
///
[XmlElement("url")]
public string Url { get; set; }
}
}