summaryrefslogtreecommitdiff
path: root/internal/models/models.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/models/models.go')
-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 {