From 3f4d489bfc98695a29ff2f069b438c060e30b972 Mon Sep 17 00:00:00 2001
From: "Grail Finder (aider)" <wohilas@gmail.com>
Date: Sat, 29 Mar 2025 15:02:43 +0300
Subject: feat: add answer validation and feedback display

---
 internal/models/models.go | 12 +++++++-----
 1 file 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 {
-- 
cgit v1.2.3