mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-23 02:26:52 +08:00
Refactor member page (#3)
* refactor: member page * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip
This commit is contained in:
19
lib/models/space/profession_verify.g.dart
Normal file
19
lib/models/space/profession_verify.g.dart
Normal file
@@ -0,0 +1,19 @@
|
||||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
|
||||
part of 'profession_verify.dart';
|
||||
|
||||
// **************************************************************************
|
||||
// JsonSerializableGenerator
|
||||
// **************************************************************************
|
||||
|
||||
ProfessionVerify _$ProfessionVerifyFromJson(Map<String, dynamic> json) =>
|
||||
ProfessionVerify(
|
||||
icon: json['icon'] as String?,
|
||||
showDesc: json['show_desc'] as String?,
|
||||
);
|
||||
|
||||
Map<String, dynamic> _$ProfessionVerifyToJson(ProfessionVerify instance) =>
|
||||
<String, dynamic>{
|
||||
'icon': instance.icon,
|
||||
'show_desc': instance.showDesc,
|
||||
};
|
||||
Reference in New Issue
Block a user