keyboard_meme_explain_response.dart 792 B

12345678910111213141516171819202122232425262728293031323334
  1. import 'package:json_annotation/json_annotation.dart';
  2. import '../../bean/keyboard_info.dart';
  3. part 'keyboard_meme_explain_response.g.dart';
  4. @JsonSerializable()
  5. class KeyboardMemeExplainResponse {
  6. // 默契数值
  7. @JsonKey(name: "constellation")
  8. String? constellation;
  9. //激情数值
  10. @JsonKey(name: "targetConstellation")
  11. String? targetConstellation;
  12. @JsonKey(name: "meme")
  13. String? meme;
  14. @JsonKey(name: "explain")
  15. String? explain;
  16. KeyboardMemeExplainResponse({
  17. this.constellation,
  18. this.targetConstellation,
  19. this.meme,
  20. this.explain,
  21. });
  22. factory KeyboardMemeExplainResponse.fromJson(Map<String, dynamic> json) =>
  23. _$KeyboardMemeExplainResponseFromJson(json);
  24. Map<String, dynamic> toJson() => _$KeyboardMemeExplainResponseToJson(this);
  25. }