mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-24 11:06:51 +08:00
11
lib/models_new/reply/up_selection.dart
Normal file
11
lib/models_new/reply/up_selection.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
class UpSelection {
|
||||
int? pendingCount;
|
||||
int? ignoreCount;
|
||||
|
||||
UpSelection({this.pendingCount, this.ignoreCount});
|
||||
|
||||
factory UpSelection.fromJson(Map<String, dynamic> json) => UpSelection(
|
||||
pendingCount: json['pending_count'] as int?,
|
||||
ignoreCount: json['ignore_count'] as int?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user