mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-27 04:26:58 +08:00
14 lines
248 B
Dart
14 lines
248 B
Dart
class Page {
|
|
int? pn;
|
|
int? ps;
|
|
int? count;
|
|
|
|
Page({this.pn, this.ps, this.count});
|
|
|
|
factory Page.fromJson(Map<String, dynamic> json) => Page(
|
|
pn: json['pn'] as int?,
|
|
ps: json['ps'] as int?,
|
|
count: json['count'] as int?,
|
|
);
|
|
}
|