mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-09-20 10:38:10 +08:00
26 lines
888 B
C#
26 lines
888 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace SKIT.FlurlHttpClient.Wechat.Api.Events
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// <para>表示 EVENT.betaapp_verify_apply_event 事件的数据。</para>
|
|||
|
/// <para>REF: https://developers.weixin.qq.com/doc/oplatform/Third-party_Platforms/2.0/api/verify_beta_Mini_Programs/mpverifybetaweapp.html </para>
|
|||
|
/// </summary>
|
|||
|
public class BetaAppVerifyApplyEvent : WechatApiEvent, WechatApiEvent.Types.IXmlSerializable
|
|||
|
{
|
|||
|
public new static class Types
|
|||
|
{
|
|||
|
public class EventData : BetaAppAuthorizationApplyEvent.Types.EventData
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 获取或设置事件数据。
|
|||
|
/// </summary>
|
|||
|
[System.Xml.Serialization.XmlElement("ApplyAuthorizationInfoNoitfy")]
|
|||
|
public Types.EventData EventData { get; set; } = default!;
|
|||
|
}
|
|||
|
}
|