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