mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-18 16:16:14 +08:00
12 lines
294 B
Dart
12 lines
294 B
Dart
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?,
|
|
);
|
|
}
|