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

14 lines
280 B
Dart

class ReplyPage {
int? num;
int? size;
int? count;
ReplyPage({this.num, this.size, this.count});
factory ReplyPage.fromJson(Map<String, dynamic> json) => ReplyPage(
num: json['num'] as int?,
size: json['size'] as int?,
count: json['count'] as int?,
);
}