mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-20 00:56:31 +08:00
10 lines
181 B
Dart
10 lines
181 B
Dart
class Show {
|
|
int? wideScreen;
|
|
|
|
Show({this.wideScreen});
|
|
|
|
factory Show.fromJson(Map<String, dynamic> json) => Show(
|
|
wideScreen: json['wide_screen'] as int?,
|
|
);
|
|
}
|