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