mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-17 23:56:13 +08:00
17 lines
250 B
Dart
17 lines
250 B
Dart
class Author {
|
|
Author({
|
|
this.mid,
|
|
this.name,
|
|
this.face,
|
|
});
|
|
String? mid;
|
|
String? name;
|
|
String? face;
|
|
|
|
Author.fromJson(Map<String, dynamic> json) {
|
|
mid = json["mid"];
|
|
name = json["name"];
|
|
face = json['face'];
|
|
}
|
|
}
|