part of 'sidebar_bloc.dart'; abstract class SidebarEvent extends Equatable { const SidebarEvent(); @override List get props => []; } // 加载小说结构和摘要事件 class LoadNovelStructure extends SidebarEvent { final String novelId; const LoadNovelStructure(this.novelId); @override List get props => [novelId]; }