Files
PiliPlus/lib/models_new/video/video_detail/dimension.dart
dom b9b54ce4f7 tweaks
Signed-off-by: dom <githubaccount56556@proton.me>
2026-01-23 13:08:32 +08:00

12 lines
236 B
Dart

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