testhub/models/question.go

18 lines
215 B
Go
Raw Normal View History

2022-05-26 07:59:55 +02:00
package models
import (
"github.com/google/uuid"
)
type Question struct {
ID uuid.UUID
Text string
AnswerIDs []uuid.UUID
}
type Answers struct {
ID uuid.UUID
Text string
Correct bool
}