mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-20 19:14:42 +08:00
10 lines
162 B
Dart
10 lines
162 B
Dart
class Author {
|
|
String? name;
|
|
|
|
Author({this.name});
|
|
|
|
factory Author.fromJson(Map<String, dynamic> json) => Author(
|
|
name: json['name'] as String?,
|
|
);
|
|
}
|