package models
type Quiz struct {
ID string `json:"id"`
Hash string `json:"hash"`
Question *Question `json:"question"`
Answers []*Answer `json:"answers"`
Correct *Answer `json:"correct"`
Type int `json:"type"`
}