probo/models/test.go

10 lines
121 B
Go

package models
type Quiz struct {
ID string
Question *Question
Answers []*Answer
Correct *Answer
Type int
}