probo/models/quiz.go
2023-10-02 12:55:03 +02:00

10 lines
223 B
Go

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