mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-18 13:26:42 +08:00
25 lines
887 B
C#
25 lines
887 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace SKIT.FlurlHttpClient.Wechat.Api.Events
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// <para>表示 EVENT.view_miniprogram 事件的数据。</para>
|
|||
|
/// <para>REF: https://developers.weixin.qq.com/doc/offiaccount/Custom_Menus/Custom_Menu_Push_Events.html#8 </para>
|
|||
|
/// </summary>
|
|||
|
public class ViewMiniProgramPushEvent : WechatApiEvent, WechatApiEvent.Types.IXmlSerializable
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 获取或设置个性化菜单 ID。
|
|||
|
/// </summary>
|
|||
|
[System.Xml.Serialization.XmlElement("MenuId", IsNullable = true)]
|
|||
|
public string? MenuId { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 获取或设置事件 Key,即跳转的小程序路径。
|
|||
|
/// </summary>
|
|||
|
[System.Xml.Serialization.XmlElement("EventKey")]
|
|||
|
public string EventKey { get; set; } = default!;
|
|||
|
}
|
|||
|
}
|