mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
fix: vipcolor
This commit is contained in:
@@ -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"];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user