mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-15 05:13:17 +08:00
40 lines
1.5 KiB
C#
40 lines
1.5 KiB
C#
namespace SKIT.FlurlHttpClient.Wechat.Work.Events
|
|
{
|
|
/// <summary>
|
|
/// <para>表示被动回复图片消息的数据。</para>
|
|
/// <para>REF: https://developer.work.weixin.qq.com/document/path/90241#%E5%9B%BE%E7%89%87%E6%B6%88%E6%81%AF </para>
|
|
/// <para>REF: https://developer.work.weixin.qq.com/document/path/90377#%E5%9B%BE%E7%89%87%E6%B6%88%E6%81%AF </para>
|
|
/// <para>REF: https://developer.work.weixin.qq.com/document/path/90859#%E5%9B%BE%E7%89%87%E6%B6%88%E6%81%AF </para>
|
|
/// </summary>
|
|
public class ImageMessageReply : WechatWorkEvent
|
|
{
|
|
public static class Types
|
|
{
|
|
public class Image
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置图片 MediaId。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("MediaId")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("MediaId")]
|
|
[System.Xml.Serialization.XmlElement("MediaId")]
|
|
public string MediaId { get; set; } = string.Empty;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// 获取或设置图片信息。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("Image")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("Image")]
|
|
[System.Xml.Serialization.XmlElement("Image")]
|
|
public Types.Image Image { get; set; } = new Types.Image();
|
|
|
|
public ImageMessageReply()
|
|
{
|
|
Event = null;
|
|
MessageType = "image";
|
|
}
|
|
}
|
|
}
|