using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// Appinfos Data Structure. /// [Serializable] public class Appinfos : AopObject { /// /// 小程序名称 /// [XmlElement("app_name")] public string AppName { get; set; } /// /// 小程序类型 /// [XmlElement("app_type")] public long AppType { get; set; } /// /// 小程序id /// [XmlElement("mini_app_id")] public long MiniAppId { get; set; } } }