mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-18 22:35:46 +08:00
25 lines
757 B
C#
25 lines
757 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace SKIT.FlurlHttpClient.Wechat.Api.Events
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// <para>表示被动回复文本消息的数据。</para>
|
|||
|
/// <para>REF: https://developers.weixin.qq.com/doc/offiaccount/Message_Management/Passive_user_reply_message.html#0 </para>
|
|||
|
/// </summary>
|
|||
|
public class TextMessageReply : WechatApiEvent, WechatApiEvent.Types.IXmlSerializable
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 获取或设置消息内容。
|
|||
|
/// </summary>
|
|||
|
[System.Xml.Serialization.XmlElement("Content")]
|
|||
|
public string Content { get; set; } = string.Empty;
|
|||
|
|
|||
|
public TextMessageReply()
|
|||
|
{
|
|||
|
Event = null;
|
|||
|
MessageType = "text";
|
|||
|
}
|
|||
|
}
|
|||
|
}
|