dreampad/lib/app/modules/home/models/chat_msg_model.dart

14 lines
167 B
Dart
Raw Normal View History

2023-11-28 10:44:58 +08:00
class ChatMsg {
String? id;
int? knowledgeId;
String? text;
int? isBot;
ChatMsg({
this.id,
this.knowledgeId,
this.text,
this.isBot,
});
}