Files
PiliPlus/lib/models_new/download/download_info.dart
bggRGjQaUbCoE ea52dd4484 fix typos
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-12-06 10:04:52 +08:00

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,
});
}