Merge branch 'feature-opusRender'

This commit is contained in:
guozhigq
2024-09-28 16:26:23 +08:00
3 changed files with 311 additions and 199 deletions

View File

@ -149,16 +149,19 @@ class ModuleAuthor {
this.face,
this.mid,
this.name,
this.pubTime,
});
String? face;
int? mid;
String? name;
String? pubTime;
ModuleAuthor.fromJson(Map<String, dynamic> json) {
face = json['face'];
mid = json['mid'];
name = json['name'];
pubTime = json['pub_time'];
}
}