diff --git a/Directory.Packages.props b/Directory.Packages.props index 11687f7..0d466ed 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -23,7 +23,7 @@ - + diff --git a/XinjingdailyBot.Infrastructure/Configs/ChannelOption.cs b/XinjingdailyBot.Infrastructure/Configs/ChannelOption.cs index 30f8536..57a9493 100644 --- a/XinjingdailyBot.Infrastructure/Configs/ChannelOption.cs +++ b/XinjingdailyBot.Infrastructure/Configs/ChannelOption.cs @@ -14,7 +14,10 @@ public sealed record ChannelOption : IXjbConfig public string ReviewGroup { get; set; } = ""; - + /// + /// 投稿频道列表 + /// + public List PostChannels { get; set; } = []; /// diff --git a/XinjingdailyBot.WebAPI/IPC/Controllers/XjbController.cs b/XinjingdailyBot.WebAPI/IPC/Controllers/XjbController.cs index 25642e4..112ffda 100644 --- a/XinjingdailyBot.WebAPI/IPC/Controllers/XjbController.cs +++ b/XinjingdailyBot.WebAPI/IPC/Controllers/XjbController.cs @@ -18,5 +18,4 @@ namespace XinjingdailyBot.WebAPI.IPC.Controllers; [SwaggerResponse((int)HttpStatusCode.ServiceUnavailable, "内部错误", typeof(GenericResponse))] public abstract class XjbController : ControllerBase { - }