DotNetCore.SKIT.FlurlHttpCl.../src/SKIT.FlurlHttpClient.Wechat.Api/Models/WxaBook/WxaBookReplaceChapterResponse.cs
Fu Diwei a2188d28b3
Some checks are pending
CodeQL / Analyze (csharp) (push) Waiting to run
CodeLint / Lint (push) Waiting to run
feat(wxapi): 新增小说小程序作品管理相关接口相关接口
2025-04-29 17:23:25 +08:00

16 lines
527 B
C#

namespace SKIT.FlurlHttpClient.Wechat.Api.Models
{
/// <summary>
/// <para>表示 [POST] /wxa/book/replacechapter 接口的响应。</para>
/// </summary>
public class WxaBookReplaceChapterResponse : WechatApiResponse
{
/// <summary>
/// 获取或设置新章节 ID。
/// </summary>
[Newtonsoft.Json.JsonProperty("new_chapter_id")]
[System.Text.Json.Serialization.JsonPropertyName("new_chapter_id")]
public string ChapterId { get; set; } = default!;
}
}