Première grosse version fonctionnel
This commit is contained in:
@@ -0,0 +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});
|
||||
}
|
||||
Reference in New Issue
Block a user