character_custom_config_response.dart 523 B

1234567891011121314151617
  1. import 'package:json_annotation/json_annotation.dart';
  2. import 'package:keyboard/data/bean/custom_config_info.dart';
  3. import '../../bean/character_info.dart';
  4. part 'character_custom_config_response.g.dart';
  5. @JsonSerializable()
  6. class CharacterCustomConfigResponse {
  7. @JsonKey(name: "customConfig")
  8. CustomConfigInfo? customConfig;
  9. CharacterCustomConfigResponse({this.customConfig});
  10. factory CharacterCustomConfigResponse.fromJson(Map<String, dynamic> json) =>
  11. _$CharacterCustomConfigResponseFromJson(json);
  12. }