fix: vipcolor

This commit is contained in:
bggRGjQaUbCoE
2024-11-05 13:06:59 +08:00
parent 1768be1ab3
commit 2143744647

View File

@@ -307,13 +307,16 @@ class Staff {
class Vip {
dynamic type;
dynamic status;
Vip({
this.type,
this.status,
});
Vip.fromJson(Map<String, dynamic> json) {
type = json["type"];
status = json["status"];
}
}