mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-25 19:46:47 +08:00
14 lines
301 B
Dart
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?,
|
|
);
|
|
}
|
|
}
|