diff --git a/packages/types/types.go b/packages/types/types.go index 0f38580..46f9d48 100644 --- a/packages/types/types.go +++ b/packages/types/types.go @@ -1,5 +1,7 @@ package types +import "github.com/google/uuid" + type Person struct { ID int64 FirstName string @@ -54,3 +56,12 @@ type OverviewTableData struct { ParticipantLastName string ParticipantCompany string } + +type Session struct { + ID uuid.UUID + InstructorID int64 + BriefingID int64 + Logins []string + ParticipantIDs []int64 + QuestionIDs []int64 +}