probo/models/test.go

10 lines
126 B
Go
Raw Normal View History

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