mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-21 03:15:14 +08:00
13
lib/models_new/fav/fav_article/author.dart
Normal file
13
lib/models_new/fav/fav_article/author.dart
Normal file
@@ -0,0 +1,13 @@
|
||||
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?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user