summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrail Finder (aider) <wohilas@gmail.com>2025-03-29 15:02:43 +0300
committerGrail Finder (aider) <wohilas@gmail.com>2025-03-29 15:02:43 +0300
commit3f4d489bfc98695a29ff2f069b438c060e30b972 (patch)
treec45cb3fe678c809f1adc2d4eb445bee987091b61
parent0e37af2bb99ead053f79f97a08e90097b06d44a9 (diff)
feat: add answer validation and feedback display
-rw-r--r--internal/models/models.go12
1 files changed, 7 insertions, 5 deletions
diff --git a/internal/models/models.go b/internal/models/models.go
index 8dc113c..c525466 100644
--- a/internal/models/models.go
+++ b/internal/models/models.go
@@ -2,11 +2,13 @@ package models
type (
Question struct {
- ID uint32
- Text string
- Options []string
- CorrectIndex uint8
- TopicID uint32
+ ID uint32
+ Text string
+ Options []string
+ CorrectIndex uint8
+ TopicID uint32
+ Feedback string
+ FeedbackClass string
}
//
Topic struct {