Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
dom
2026-01-22 15:51:22 +08:00
parent 92e5fae29c
commit b9b54ce4f7
34 changed files with 627 additions and 665 deletions

View File

@@ -1,13 +0,0 @@
class Dimension {
int? height;
int? rotate;
int? width;
Dimension({this.height, this.rotate, this.width});
factory Dimension.fromJson(Map<String, dynamic> json) => Dimension(
height: json['height'] as int?,
rotate: json['rotate'] as int?,
width: json['width'] as int?,
);
}

View File

@@ -1,7 +1,7 @@
import 'package:PiliPlus/models_new/pgc/pgc_info_model/badge_info.dart';
import 'package:PiliPlus/models_new/pgc/pgc_info_model/dimension.dart';
import 'package:PiliPlus/models_new/pgc/pgc_info_model/rights.dart';
import 'package:PiliPlus/models_new/pgc/pgc_info_model/skip.dart';
import 'package:PiliPlus/models_new/video/video_detail/dimension.dart';
import 'package:PiliPlus/models_new/video/video_detail/episode.dart'
show BaseEpisodeItem;