probo/models/quiz.go
2023-09-22 10:29:10 +02:00

11 lines
258 B
Go

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