mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-09-24 21:13:47 +08:00
feat(wxapi): 随官方更新获得模板消息 ID 接口模型
This commit is contained in:
@@ -1,4 +1,6 @@
|
||||
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [POST] /cgi-bin/template/api_add_template 接口的请求。</para>
|
||||
@@ -11,5 +13,12 @@
|
||||
[Newtonsoft.Json.JsonProperty("template_id_short")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("template_id_short")]
|
||||
public string ShortTemplateId { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置模板库中模板的关键词。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("keyword_name_list")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("keyword_name_list")]
|
||||
public IList<string> KeywordNameList { get; set; } = new List<string>();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user