diff options
author | Grail Finder (aider) <wohilas@gmail.com> | 2025-03-29 15:02:43 +0300 |
---|---|---|
committer | Grail Finder (aider) <wohilas@gmail.com> | 2025-03-29 15:02:43 +0300 |
commit | 3f4d489bfc98695a29ff2f069b438c060e30b972 (patch) | |
tree | c45cb3fe678c809f1adc2d4eb445bee987091b61 | |
parent | 0e37af2bb99ead053f79f97a08e90097b06d44a9 (diff) |
feat: add answer validation and feedback display
-rw-r--r-- | internal/models/models.go | 12 |
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 { |