dreampad/lib/app/models/question_answer_model.dart

20 lines
287 B
Dart
Raw Permalink Normal View History

2023-11-28 10:44:58 +08:00
class QuestionAnswer {
int? index;
double? left;
double? top;
String? question;
String? answer;
bool? display;
2023-11-28 20:25:09 +08:00
String guide;
2023-11-28 10:44:58 +08:00
QuestionAnswer({
this.index,
this.left,
this.top,
this.question,
this.answer,
this.display,
2023-11-28 20:25:09 +08:00
this.guide = '',
2023-11-28 10:44:58 +08:00
});
}