14 lines
180 B
Go
14 lines
180 B
Go
|
package models
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type Exam struct {
|
||
|
ID string `gorm:"primaryKey"`
|
||
|
CreatedAt time.Time
|
||
|
|
||
|
Quizzes []*Quiz
|
||
|
Participant *Participant
|
||
|
|
||
|
Responses []string
|
||
|
}
|