probo/models/test.go
2022-06-27 15:11:37 +02:00

9 lines
126 B
Go

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