Files
PiliPlus/lib/models_new/reply/up_selection.dart
bggRGjQaUbCoE b960359a39 opt models
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-06-05 14:44:56 +08:00

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