14 lines
167 B
Dart
14 lines
167 B
Dart
|
class ChatMsg {
|
||
|
String? id;
|
||
|
int? knowledgeId;
|
||
|
String? text;
|
||
|
int? isBot;
|
||
|
|
||
|
ChatMsg({
|
||
|
this.id,
|
||
|
this.knowledgeId,
|
||
|
this.text,
|
||
|
this.isBot,
|
||
|
});
|
||
|
}
|