testhub/models/test.go

11 lines
119 B
Go
Raw Normal View History

2022-06-16 17:21:04 +02:00
package models
2022-06-17 16:02:58 +02:00
type Quiz struct {
2022-06-16 17:21:04 +02:00
ID uint
Question *Question
Answers []*Answer
Correct *Answer
Type int
}