mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-09-24 04:53:46 +08:00
16 lines
510 B
C#
16 lines
510 B
C#
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [POST] /tcb/createsendsmstask 接口的响应。</para>
|
|
/// </summary>
|
|
public class TCBCreateSendSmsTaskResponse : WechatApiResponse
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置查询 ID。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("query_id")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("query_id")]
|
|
public string QueryId { get; set; } = default!;
|
|
}
|
|
}
|