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