49 lines
1.1 KiB
C#
49 lines
1.1 KiB
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// MiniAppHistoryInfo Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class MiniAppHistoryInfo : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 扩展信息
|
|
/// </summary>
|
|
[XmlElement("ext_info")]
|
|
public string ExtInfo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 图标
|
|
/// </summary>
|
|
[XmlElement("icon_url")]
|
|
public string IconUrl { get; set; }
|
|
|
|
/// <summary>
|
|
/// 跳转链接
|
|
/// </summary>
|
|
[XmlElement("link")]
|
|
public string Link { get; set; }
|
|
|
|
/// <summary>
|
|
/// 小程序id
|
|
/// </summary>
|
|
[XmlElement("mini_app_id")]
|
|
public string MiniAppId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 小程序名
|
|
/// </summary>
|
|
[XmlElement("name")]
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 小程序slogan
|
|
/// </summary>
|
|
[XmlElement("slogan")]
|
|
public string Slogan { get; set; }
|
|
}
|
|
}
|