Files
PiliPlus/lib/models_new/fav/fav_article/author.dart
bggRGjQaUbCoE b960359a39 opt models
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-06-05 14:44:56 +08:00

14 lines
298 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?,
);
}