dreampad/lib/app/modules/home/models/knowledge_point_dialogue_model.dart
2023-11-30 00:09:22 +08:00

14 lines
181 B
Dart

class KnowledgePointDialogue {
int? kpId;
int? id;
bool? isGpt;
String? text;
KnowledgePointDialogue({
this.kpId,
this.id,
this.isGpt,
this.text,
});
}