* opt: ao

* multi select

---------

Co-authored-by: dom <githubaccount56556@proton.me>
This commit is contained in:
My-Responsitories
2026-01-26 14:11:48 +08:00
committed by GitHub
parent 038f03a4e7
commit bfb2becb2d
10 changed files with 123 additions and 65 deletions

View File

@@ -1,4 +1,6 @@
enum SkipType {
import 'package:PiliPlus/models/common/enum_with_label.dart';
enum SkipType implements EnumWithLabel {
alwaysSkip('总是跳过'),
skipOnce('跳过一次'),
skipManually('手动跳过'),
@@ -6,6 +8,7 @@ enum SkipType {
disable('禁用')
;
final String title;
const SkipType(this.title);
@override
final String label;
const SkipType(this.label);
}