mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-20 00:56:31 +08:00
15 lines
299 B
Dart
15 lines
299 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?,
|
|
);
|
|
}
|