probo/models/quiz.go
2023-07-12 09:30:56 +02:00

10 lines
249 B
Go

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"`
}