Files
PiliPlus/lib/models_new/space/space_season_series/page.dart
2026-04-05 12:11:22 +08:00

12 lines
181 B
Dart

class SpaceSsPage {
int? total;
SpaceSsPage({
this.total,
});
factory SpaceSsPage.fromJson(Map<String, dynamic> json) => SpaceSsPage(
total: json["total"],
);
}