14 lines
181 B
Dart
14 lines
181 B
Dart
class KnowledgePointDialogue {
|
|
int? kpId;
|
|
int? id;
|
|
bool? isGpt;
|
|
String? text;
|
|
|
|
KnowledgePointDialogue({
|
|
this.kpId,
|
|
this.id,
|
|
this.isGpt,
|
|
this.text,
|
|
});
|
|
}
|