probo/models/exam.go
2023-10-18 13:40:21 +02:00

13 lines
180 B
Go

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