This commit is contained in:
2026-05-14 16:54:32 +00:00
parent 5b2a2e7ddb
commit 15fcbcc9eb
212 changed files with 18586 additions and 10360 deletions
@@ -1,13 +1,13 @@
class Question {
final String text;
final List<Option> options;
Question({required this.text, required this.options});
}
class Option {
final String text;
final int points;
Option({required this.text, required this.points});
}
class Question {
final String text;
final List<Option> options;
Question({required this.text, required this.options});
}
class Option {
final String text;
final int points;
Option({required this.text, required this.points});
}