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