mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-21 17:46:24 +08:00
30 lines
597 B
Dart
30 lines
597 B
Dart
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']);
|
|
}
|
|
}
|