Files
PiliPlus/lib/models/fav_article/author.dart
bggRGjQaUbCoE fd55383778 opt handle res
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-05-25 11:45:20 +08:00

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'];
}
}