opt handle res

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-05-29 17:17:35 +08:00
parent b643cb1bd0
commit 924d51d41b
198 changed files with 3715 additions and 2001 deletions

View File

@@ -0,0 +1,29 @@
import 'package:PiliPlus/models/model_avatar.dart';
class Staff {
dynamic mid;
String? title;
String? name;
String? face;
Vip? vip;
BaseOfficialVerify? official;
Staff({
this.mid,
this.title,
this.name,
this.face,
this.vip,
});
Staff.fromJson(Map<String, dynamic> json) {
mid = json["mid"];
title = json["title"];
name = json["name"];
face = json["face"];
vip = json["vip"] == null ? null : Vip.fromJson(json["vip"]);
official = json['official'] == null
? null
: BaseOfficialVerify.fromJson(json['official']);
}
}