chat_super_reply_response.dart 436 B

1234567891011121314151617
  1. import 'package:json_annotation/json_annotation.dart';
  2. part 'chat_super_reply_response.g.dart';
  3. @JsonSerializable()
  4. class ChatSuperReplyResponse {
  5. @JsonKey(name: "content")
  6. String? content;
  7. ChatSuperReplyResponse({ this.content});
  8. factory ChatSuperReplyResponse.fromJson(Map<String, dynamic> json) =>
  9. _$ChatSuperReplyResponseFromJson(json);
  10. Map<String, dynamic> toJson() => _$ChatSuperReplyResponseToJson(this);
  11. }