Files
PiliPlus/lib/models_new/live/live_feed_index/watched_show.dart
bggRGjQaUbCoE 10808c2a84 show live online count
update live title

update live watchedshow

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-11-26 11:47:00 +08:00

12 lines
212 B
Dart

class WatchedShow {
String? textLarge;
WatchedShow({
this.textLarge,
});
factory WatchedShow.fromJson(Map<String, dynamic> json) => WatchedShow(
textLarge: json['text_large'] as String?,
);
}