mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-21 11:22:16 +08:00
28 lines
908 B
Dart
28 lines
908 B
Dart
import 'package:PiliPlus/models_new/live/live_feed_index/watched_show.dart';
|
|
import 'package:PiliPlus/models_new/live/live_room_info_h5/anchor_info.dart';
|
|
import 'package:PiliPlus/models_new/live/live_room_info_h5/room_info.dart';
|
|
|
|
class RoomInfoH5Data {
|
|
RoomInfo? roomInfo;
|
|
AnchorInfo? anchorInfo;
|
|
WatchedShow? watchedShow;
|
|
|
|
RoomInfoH5Data({
|
|
this.roomInfo,
|
|
this.anchorInfo,
|
|
this.watchedShow,
|
|
});
|
|
|
|
factory RoomInfoH5Data.fromJson(Map<String, dynamic> json) => RoomInfoH5Data(
|
|
roomInfo: json['room_info'] == null
|
|
? null
|
|
: RoomInfo.fromJson(json['room_info'] as Map<String, dynamic>),
|
|
anchorInfo: json['anchor_info'] == null
|
|
? null
|
|
: AnchorInfo.fromJson(json['anchor_info'] as Map<String, dynamic>),
|
|
watchedShow: json['watched_show'] == null
|
|
? null
|
|
: WatchedShow.fromJson(json['watched_show'] as Map<String, dynamic>),
|
|
);
|
|
}
|