probo/models/exam.go

14 lines
180 B
Go
Raw Normal View History

2023-10-18 13:40:21 +02:00
package models
import "time"
type Exam struct {
ID string `gorm:"primaryKey"`
CreatedAt time.Time
Quizzes []*Quiz
Participant *Participant
Responses []string
}