Files
PiliPlus/lib/plugin/pl_player/models/play_repeat.dart
bggRGjQaUbCoE 418a1e8d39 reformat
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-07-23 16:47:11 +08:00

11 lines
222 B
Dart

enum PlayRepeat {
pause('播完暂停'),
listOrder('顺序播放'),
singleCycle('单个循环'),
listCycle('列表循环'),
autoPlayRelated('自动连播');
final String desc;
const PlayRepeat(this.desc);
}