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

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