mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-19 07:44:46 +08:00
16 lines
499 B
C#
16 lines
499 B
C#
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [POST] /promoter/sendmsg 接口的响应。</para>
|
|
/// </summary>
|
|
public class PromoterSendMessageResponse : WechatApiResponse
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置消息 ID。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("msg_id")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("msg_id")]
|
|
public string MessageId { get; set; } = default!;
|
|
}
|
|
}
|