summaryrefslogtreecommitdiff
path: root/internal/models/models.go
blob: c5254664ae0d113198e0ade461841b5e4bd2b810 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package models

type (
	Question struct {
		ID            uint32
		Text          string
		Options       []string
		CorrectIndex  uint8
		TopicID       uint32
		Feedback      string
		FeedbackClass string
	}
	//
	Topic struct {
		ID    uint32
		Name  string
		Level uint32
	}
)