11 lines
119 B
Go
11 lines
119 B
Go
|
package models
|
||
|
|
||
|
type Quiz struct {
|
||
|
ID uint
|
||
|
|
||
|
Question *Question
|
||
|
Answers []*Answer
|
||
|
Correct *Answer
|
||
|
Type int
|
||
|
}
|