mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-20 11:08:03 +08:00
13
lib/models_new/reply2reply/page.dart
Normal file
13
lib/models_new/reply2reply/page.dart
Normal file
@@ -0,0 +1,13 @@
|
||||
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?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user