Files
PiliPlus/lib/models_new/member/search_archive/page.dart
bggRGjQaUbCoE 418a1e8d39 reformat
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-07-23 16:47:11 +08:00

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?,
);
}