using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOpenMiniInnerappServicePublishModel Data Structure. /// [Serializable] public class AlipayOpenMiniInnerappServicePublishModel : AopObject { /// /// 服务发布logo /// [XmlElement("app_logo")] public string AppLogo { get; set; } /// /// 业务来源 /// [XmlElement("app_origin")] public string AppOrigin { get; set; } /// /// 小程序ID,仅特殊场景使用,普通业务方无需关注该参数。 /// [XmlElement("mini_app_id")] public string MiniAppId { get; set; } /// /// 小程序模板所属PID /// [XmlElement("pid")] public string Pid { get; set; } /// /// 服务子标题 /// [XmlElement("sub_title")] public string SubTitle { get; set; } /// /// 服务名称 /// [XmlElement("title")] public string Title { get; set; } } }