mod: 修改样式

This commit is contained in:
guozhigq
2023-07-13 14:16:55 +08:00
parent 0cbf777220
commit 180ba11089
6 changed files with 71 additions and 53 deletions

View File

@ -576,6 +576,7 @@ class DynamicLiveModel {
String? areaName;
String? title;
int? liveStartTime;
Map? watchedShow;
DynamicLiveModel.fromJson(Map<String, dynamic> json) {
content = json['content'];
@ -594,6 +595,7 @@ class DynamicLiveModel {
areaName = livePlayInfo['area_name'];
title = livePlayInfo['title'];
liveStartTime = livePlayInfo['live_start_time'];
watchedShow = livePlayInfo['watched_show'];
}
}
}