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

14 lines
181 B
Dart
Raw Normal View History

2023-11-30 00:08:39 +08:00
class KnowledgePointDialogue {
int? kpId;
int? id;
bool? isGpt;
String? text;
KnowledgePointDialogue({
this.kpId,
this.id,
this.isGpt,
this.text,
});
}