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

@@ -4,7 +4,7 @@ import 'package:PiliPlus/models_new/video/video_detail/episode.dart';
class Part extends BaseEpisodeItem {
int? page;
String? from;
String? pagePart;
String? part;
int? duration;
String? vid;
String? weblink;
@@ -16,7 +16,7 @@ class Part extends BaseEpisodeItem {
super.cid,
this.page,
this.from,
this.pagePart,
this.part,
this.duration,
this.vid,
this.weblink,
@@ -30,7 +30,7 @@ class Part extends BaseEpisodeItem {
cid: json['cid'] as int?,
page: json['page'] as int?,
from: json['from'] as String?,
pagePart: json['part'] as String?,
part: json['part'] as String?,
duration: json['duration'] as int?,
vid: json['vid'] as String?,
weblink: json['weblink'] as String?,