mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-18 16:16:14 +08:00
10 lines
164 B
Dart
10 lines
164 B
Dart
class Senior {
|
|
int? status;
|
|
|
|
Senior({this.status});
|
|
|
|
factory Senior.fromJson(Map<String, dynamic> json) => Senior(
|
|
status: json['status'] as int?,
|
|
);
|
|
}
|