mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-06-01 16:48:16 +08:00
@@ -1,13 +1,9 @@
|
||||
class Page {
|
||||
int? pn;
|
||||
int? ps;
|
||||
int? count;
|
||||
|
||||
Page({this.pn, this.ps, this.count});
|
||||
Page({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?,
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user