Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
dom
2026-03-23 11:47:56 +08:00
parent 1724f0d202
commit 9578f948b4
20 changed files with 132 additions and 77 deletions

View File

@@ -23,4 +23,13 @@ class UinfoMedal {
v2MedalColorStart: json['v2_medal_color_start'] as String?,
v2MedalColorText: json['v2_medal_color_text'] as String?,
);
Map<String, dynamic> toJson() => {
'name': name,
'level': level,
'id': id,
'ruid': ruid,
'v2_medal_color_start': v2MedalColorStart,
'v2_medal_color_text': v2MedalColorText,
};
}