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