probo/models/test.go
2022-06-23 11:25:35 +02:00

10 lines
119 B
Go

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