Files
PiliPlus/lib/models_new/download/download_info.dart
bggRGjQaUbCoE ffd4f9ee73 feat: video download
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-11-09 22:06:19 +08:00

24 lines
527 B
Dart

import 'package:PiliPlus/models_new/download/bili_download_entry_info.dart';
class DownloadPageInfo {
final String pageId;
final String dirPath;
final String title;
String cover;
int sortKey;
final int? seasonType;
final List<BiliDownloadEntryInfo> entrys;
BiliDownloadEntryInfo? entry;
DownloadPageInfo({
required this.pageId,
required this.dirPath,
required this.title,
required this.cover,
required this.sortKey,
this.seasonType,
required this.entrys,
this.entry,
});
}