mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-18 08:06:21 +08:00
14 lines
280 B
Dart
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?,
|
|
);
|
|
}
|