feat: video download

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-11-06 12:12:32 +08:00
parent 976622df89
commit ffd4f9ee73
92 changed files with 4853 additions and 946 deletions

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