mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-17 15:46:14 +08:00
11 lines
222 B
Dart
11 lines
222 B
Dart
enum PlayRepeat {
|
|
pause('播完暂停'),
|
|
listOrder('顺序播放'),
|
|
singleCycle('单个循环'),
|
|
listCycle('列表循环'),
|
|
autoPlayRelated('自动连播');
|
|
|
|
final String desc;
|
|
const PlayRepeat(this.desc);
|
|
}
|