mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-27 13:55:54 +08:00
opt: ao (#1811)
* opt: ao * multi select --------- Co-authored-by: dom <githubaccount56556@proton.me>
This commit is contained in:
committed by
GitHub
parent
038f03a4e7
commit
bfb2becb2d
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user