mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-24 19:16:44 +08:00
9
lib/models_new/reply/senior.dart
Normal file
9
lib/models_new/reply/senior.dart
Normal file
@@ -0,0 +1,9 @@
|
||||
class Senior {
|
||||
int? status;
|
||||
|
||||
Senior({this.status});
|
||||
|
||||
factory Senior.fromJson(Map<String, dynamic> json) => Senior(
|
||||
status: json['status'] as int?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user