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

15 lines
286 B
Dart

class LevelInfo {
int? currentLevel;
int? identity;
LevelInfo({
this.currentLevel,
this.identity,
});
factory LevelInfo.fromJson(Map<String, dynamic> json) => LevelInfo(
currentLevel: json['current_level'] as int?,
identity: json['identity'] as int?,
);
}