Files
PiliPlus/lib/models/video_detail/staff.dart
bggRGjQaUbCoE 924d51d41b opt handle res
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-05-29 17:17:42 +08:00

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']);
}
}