18 lines
215 B
Go
18 lines
215 B
Go
|
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
|
||
|
}
|