mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-21 01:26:59 +08:00
16 lines
371 B
Dart
16 lines
371 B
Dart
class Upper {
|
|
int? mid;
|
|
String? name;
|
|
String? face;
|
|
String? jumpLink;
|
|
|
|
Upper({this.mid, this.name, this.face, this.jumpLink});
|
|
|
|
factory Upper.fromJson(Map<String, dynamic> json) => Upper(
|
|
mid: json['mid'] as int?,
|
|
name: json['name'] as String?,
|
|
face: json['face'] as String?,
|
|
jumpLink: json['jump_link'] as String?,
|
|
);
|
|
}
|