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 { class Vip {
dynamic type; dynamic type;
dynamic status;
Vip({ Vip({
this.type, this.type,
this.status,
}); });
Vip.fromJson(Map<String, dynamic> json) { Vip.fromJson(Map<String, dynamic> json) {
type = json["type"]; type = json["type"];
status = json["status"];
} }
} }