dreampad/lib/app/models/question_answer_model.dart
2023-12-02 00:45:49 +08:00

20 lines
287 B
Dart

class QuestionAnswer {
int? index;
double? left;
double? top;
String? question;
String? answer;
bool? display;
String guide;
QuestionAnswer({
this.index,
this.left,
this.top,
this.question,
this.answer,
this.display,
this.guide = '',
});
}