Files
PiliPlus/lib/plugin/pl_player/models/play_repeat.dart
bggRGjQaUbCoE 861365930d reformat
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-11-14 09:22:43 +08:00

12 lines
225 B
Dart

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