mucke/lib/system/models/queue_item.dart
2020-12-13 12:37:08 +01:00

15 lines
291 B
Dart

import 'song_model.dart';
class QueueItem {
QueueItem(
this.song, {
this.originalIndex,
this.type = QueueItemType.standard,
});
final SongModel song;
final int originalIndex;
final QueueItemType type;
}
enum QueueItemType { standard, predecessor, successor, added }