probo/models/test.go

11 lines
143 B
Go
Raw Normal View History

2022-06-23 11:25:35 +02:00
package models
type Quiz struct {
2022-06-27 15:11:37 +02:00
ID string
2023-06-28 17:21:59 +02:00
Hash string
2022-06-23 11:25:35 +02:00
Question *Question
Answers []*Answer
Correct *Answer
Type int
}