probo/models/test.go

11 lines
121 B
Go
Raw Normal View History

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