Add tags to models.Quiz
This commit is contained in:
parent
371379e981
commit
a5b24b7919
2 changed files with 6 additions and 6 deletions
|
@ -1,10 +1,10 @@
|
||||||
package models
|
package models
|
||||||
|
|
||||||
type Quiz struct {
|
type Quiz struct {
|
||||||
ID string
|
ID string `json:"id"`
|
||||||
Hash string
|
Hash string `json:"hash"`
|
||||||
Question *Question
|
Question *Question `json:"question"`
|
||||||
Answers []*Answer
|
Answers []*Answer `json:"answers"`
|
||||||
Correct *Answer
|
Correct *Answer `json:"correct"`
|
||||||
Type int
|
Type int `json:"type"`
|
||||||
}
|
}
|
||||||
|
|
BIN
probo
BIN
probo
Binary file not shown.
Loading…
Reference in a new issue