Files
PiliPlus/lib/models_new/live/live_feed_index/watched_show.dart
bggRGjQaUbCoE 418a1e8d39 reformat
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-07-23 16:47:11 +08:00

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?,
);
}