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

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