Files
PiliPlus/lib/models_new/space/space/profession_verify.dart
bggRGjQaUbCoE b960359a39 opt models
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-06-05 14:44:56 +08:00

14 lines
301 B
Dart

class ProfessionVerify {
String? icon;
String? showDesc;
ProfessionVerify({this.icon, this.showDesc});
factory ProfessionVerify.fromJson(Map<String, dynamic> json) {
return ProfessionVerify(
icon: json['icon'] as String?,
showDesc: json['show_desc'] as String?,
);
}
}