feat(wxapi): 调整腾讯云服务 TCB 相关接口及模型的命名方式

This commit is contained in:
Fu Diwei
2022-11-04 10:40:13 +08:00
parent b3168ee246
commit 7525d6475d
347 changed files with 402 additions and 402 deletions

View File

@@ -0,0 +1,15 @@
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!;
}
}