Files
pilipala/lib/models/video/reply/page.dart
2023-04-23 15:50:51 +08:00

21 lines
316 B
Dart

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