mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-20 11:08:03 +08:00
10 lines
152 B
Dart
10 lines
152 B
Dart
class Page {
|
|
int? count;
|
|
|
|
Page({this.count});
|
|
|
|
factory Page.fromJson(Map<String, dynamic> json) => Page(
|
|
count: json['count'] as int?,
|
|
);
|
|
}
|