probo/models/quiz.go

11 lines
223 B
Go
Raw Normal View History

2022-06-23 11:25:35 +02:00
package models
type Quiz struct {
2023-09-22 10:29:10 +02:00
Meta
2023-07-04 18:05:19 +02:00
Hash string `json:"hash"`
Question *Question `json:"question"`
Answers []*Answer `json:"answers"`
Correct *Answer `json:"correct"`
Type int `json:"type"`
2022-06-23 11:25:35 +02:00
}