Files
PiliPlus/lib/models_new/live/live_feed_index/watched_show.dart
bggRGjQaUbCoE b960359a39 opt models
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-06-05 14:44:56 +08:00

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