dreampad/lib/app/modules/home/models/chat_msg_model.dart
2023-11-28 10:45:09 +08:00

14 lines
167 B
Dart

class ChatMsg {
String? id;
int? knowledgeId;
String? text;
int? isBot;
ChatMsg({
this.id,
this.knowledgeId,
this.text,
this.isBot,
});
}