probo/models/test.go
2023-06-28 17:21:59 +02:00

10 lines
143 B
Go

package models
type Quiz struct {
ID string
Hash string
Question *Question
Answers []*Answer
Correct *Answer
Type int
}