10 lines
143 B
Go
10 lines
143 B
Go
package models
|
|
|
|
type Quiz struct {
|
|
ID string
|
|
Hash string
|
|
Question *Question
|
|
Answers []*Answer
|
|
Correct *Answer
|
|
Type int
|
|
}
|