mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-05-09 11:37:51 +08:00
opt handle res
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
29
lib/models/video_detail/staff.dart
Normal file
29
lib/models/video_detail/staff.dart
Normal 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']);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user