From 4e0c8ec1acead2fcd18b2b0ab1aa3ca902c37cb2 Mon Sep 17 00:00:00 2001 From: Jason Streifling Date: Thu, 19 Oct 2023 19:59:11 +0200 Subject: [PATCH] =?UTF-8?q?type=20Session=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/types/types.go | 11 +++++++++++ 1 file changed, 11 insertions(+) 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 +}