mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-06-02 00:58:19 +08:00
feat: video download
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
23
lib/models_new/download/download_info.dart
Normal file
23
lib/models_new/download/download_info.dart
Normal file
@@ -0,0 +1,23 @@
|
||||
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,
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user