Files
PiliPlus/lib/models_new/reply/up_selection.dart
bggRGjQaUbCoE 418a1e8d39 reformat
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-07-23 16:47:11 +08:00

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