mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-21 03:15:14 +08:00
24 lines
590 B
Dart
24 lines
590 B
Dart
import 'package:PiliPlus/models_new/download/bili_download_entry_info.dart';
|
|
import 'package:PiliPlus/pages/common/multi_select/base.dart'
|
|
show MultiSelectData;
|
|
|
|
class DownloadPageInfo with MultiSelectData {
|
|
final String pageId;
|
|
final String dirPath;
|
|
final String title;
|
|
String cover;
|
|
int sortKey;
|
|
final int? seasonType;
|
|
final List<BiliDownloadEntryInfo> entries;
|
|
|
|
DownloadPageInfo({
|
|
required this.pageId,
|
|
required this.dirPath,
|
|
required this.title,
|
|
required this.cover,
|
|
required this.sortKey,
|
|
this.seasonType,
|
|
required this.entries,
|
|
});
|
|
}
|