import 'package:PiliPlus/models/live/live_search/watched_show.dart'; class LiveSearchRoomItemModel { int? roomid; String? cover; String? title; String? name; String? face; int? online; String? link; WatchedShow? watchedShow; LiveSearchRoomItemModel({ this.roomid, this.cover, this.title, this.name, this.face, this.online, this.link, this.watchedShow, }); factory LiveSearchRoomItemModel.fromJson(Map json) => LiveSearchRoomItemModel( roomid: json['roomid'] as int?, cover: json['cover'] as String?, title: json['title'] as String?, name: json['name'] as String?, face: json['face'] as String?, online: json['online'] as int?, link: json['link'] as String?, watchedShow: json['watched_show'] == null ? null : WatchedShow.fromJson( json['watched_show'] as Map), ); }