mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-24 11:06:51 +08:00
14
lib/models_new/live/live_feed_index/watched_show.dart
Normal file
14
lib/models_new/live/live_feed_index/watched_show.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
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?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user