using System.Collections.Generic; namespace SKIT.FlurlHttpClient.Wechat.Api.Models { /// /// 表示 [POST] /wxa/book/batchcreatechapter 接口的请求。 /// public class WxaBookBatchCreateChapterRequest : WechatApiRequest, IInferable { public static class Types { public class Chapter : WxaBookCreateChapterRequest.Types.Chapter { } } /// /// 获取或设置作品 ID。 /// [Newtonsoft.Json.JsonProperty("book_id")] [System.Text.Json.Serialization.JsonPropertyName("book_id")] public string BookId { get; set; } = string.Empty; /// /// 获取或设置章节列表。 /// [Newtonsoft.Json.JsonProperty("chapter_list")] [System.Text.Json.Serialization.JsonPropertyName("chapter_list")] public IList ChapterList { get; set; } = new List(); } }