mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-04-05 17:37:54 +08:00
fix(wxapi): 修复获取图文素材接口模型的字段缺失问题
This commit is contained in:
parent
3e8ff8fbe6
commit
00f01000b2
@ -19,6 +19,13 @@ namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
||||
[System.Text.Json.Serialization.JsonPropertyName("thumb_media_id")]
|
||||
public string ThumbnailMediaId { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置图文消息缩略图 URL。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("thumb_url")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("thumb_url")]
|
||||
public string ThumbnailUrl { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置图文消息标题。
|
||||
/// </summary>
|
||||
|
@ -3,6 +3,7 @@
|
||||
{
|
||||
"title": "TITLE",
|
||||
"thumb_media_id": "THUMB_MEDIA_ID",
|
||||
"thumb_url": "thumb_url",
|
||||
"author": "AUTHOR",
|
||||
"digest": "DIGEST",
|
||||
"show_cover_pic": 1,
|
||||
|
Loading…
Reference in New Issue
Block a user