sos_device

This commit is contained in:
mohammad
2024-11-24 15:05:33 +03:00
parent 6733c4f4ab
commit b365f7e347
31 changed files with 3691 additions and 33 deletions

View File

@ -0,0 +1,11 @@
class QuestionModel {
final int id;
final String question;
final String answer;
QuestionModel({
required this.id,
required this.question,
required this.answer,
});
}