mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-29 14:56:29 +08:00
12 lines
181 B
Dart
12 lines
181 B
Dart
class SpaceSsPage {
|
|
int? total;
|
|
|
|
SpaceSsPage({
|
|
this.total,
|
|
});
|
|
|
|
factory SpaceSsPage.fromJson(Map<String, dynamic> json) => SpaceSsPage(
|
|
total: json["total"],
|
|
);
|
|
}
|