probo/models/test.go

11 lines
119 B
Go
Raw Normal View History

2022-06-23 11:25:35 +02:00
package models
type Quiz struct {
ID uint
Question *Question
Answers []*Answer
Correct *Answer
Type int
}