Files
PiliPlus/lib/models_new/fav/fav_article/author.dart
2026-04-05 12:11:22 +08:00

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