mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
39 lines
932 B
Dart
39 lines
932 B
Dart
import '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<String, dynamic> 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<String, dynamic>),
|
|
);
|
|
}
|