mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-05-10 03:57:49 +08:00
opt handle res
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
13
lib/models/pgc/pgc_info_model/dimension.dart
Normal file
13
lib/models/pgc/pgc_info_model/dimension.dart
Normal file
@@ -0,0 +1,13 @@
|
||||
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?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user