Der Umstieg auf Sessions ist weitgehend geglückt

This commit is contained in:
2023-10-28 08:01:34 +02:00
parent aded71394d
commit 5049db064c
11 changed files with 396 additions and 225 deletions

View File

@ -8,14 +8,12 @@ type Person struct {
LastName string
}
type Instructor struct {
Person
PersonnelID int
}
type Instructor Person
type Participant struct {
Person
Company string
Login string
}
type Briefing struct {
@ -61,10 +59,8 @@ type OverviewTableData struct {
}
type Session struct {
ID uuid.UUID
InstructorID int64
BriefingID int64
Logins []string
ParticipantIDs []int64
QuestionIDs []int64
ID uuid.UUID
*Briefing
Participants []*Participant
Questions []Question
}