Files
PiliPlus/lib/plugin/pl_player/models/play_repeat.dart
bggRGjQaUbCoE 604d78ad6a opt data
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-06-21 18:22:41 +08:00

12 lines
226 B
Dart

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