mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-21 19:28:27 +08:00
12 lines
141 B
Dart
12 lines
141 B
Dart
class Page {
|
|
int? id;
|
|
|
|
Page({
|
|
this.id,
|
|
});
|
|
|
|
factory Page.fromJson(Map<String, dynamic> json) => Page(
|
|
id: json["id"],
|
|
);
|
|
}
|