mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-21 17:46:24 +08:00
15 lines
311 B
Dart
15 lines
311 B
Dart
class WatchedShow {
|
|
String? textSmall;
|
|
String? textLarge;
|
|
|
|
WatchedShow({
|
|
this.textSmall,
|
|
this.textLarge,
|
|
});
|
|
|
|
factory WatchedShow.fromJson(Map<String, dynamic> json) => WatchedShow(
|
|
textSmall: json['text_small'] as String?,
|
|
textLarge: json['text_large'] as String?,
|
|
);
|
|
}
|