Files
PiliPlus/lib/models_new/space/space/achieve.dart
bggRGjQaUbCoE 418a1e8d39 reformat
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-07-23 16:47:11 +08:00

14 lines
336 B
Dart

class Achieve {
bool? isDefault;
String? image;
String? achieveUrl;
Achieve({this.isDefault, this.image, this.achieveUrl});
factory Achieve.fromJson(Map<String, dynamic> json) => Achieve(
isDefault: json['is_default'] as bool?,
image: json['image'] as String?,
achieveUrl: json['achieve_url'] as String?,
);
}