mod: show pendant/decorate

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-01-28 10:00:52 +08:00
parent 7f3f7f6bdd
commit b761c35d10
7 changed files with 356 additions and 161 deletions

View File

@@ -129,6 +129,7 @@ class ModuleAuthorModel {
this.type,
this.vip,
this.decorate,
this.pendant,
});
String? face;
@@ -143,7 +144,7 @@ class ModuleAuthorModel {
String? type;
Map? vip;
Map? decorate;
// Map? pendant;
Map? pendant;
ModuleAuthorModel.fromJson(Map<String, dynamic> json) {
face = json['face'];
@@ -159,7 +160,7 @@ class ModuleAuthorModel {
vip = json['vip'];
if (showDynDecorate) {
decorate = json['decorate'];
// pendant = json['pendant'];
pendant = json['pendant'];
}
}