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

12 lines
167 B
Dart

class Badge {
String? text;
Badge({
this.text,
});
factory Badge.fromJson(Map<String, dynamic> json) => Badge(
text: json['text'] as String?,
);
}