From 6972948ee3346031124f4f5bd7a4e94f6dd54f38 Mon Sep 17 00:00:00 2001 From: Jason Streifling Date: Tue, 10 Oct 2023 17:40:29 +0200 Subject: [PATCH] =?UTF-8?q?Questionaire=20zum=20type=20Participant=20hinzu?= =?UTF-8?q?gef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/types/types.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/types/types.go b/packages/types/types.go index baf87ee..1db187f 100644 --- a/packages/types/types.go +++ b/packages/types/types.go @@ -1,5 +1,7 @@ package types +import "os" + type Person struct { FirstName string LastName string @@ -10,7 +12,8 @@ type Instructor Person type Participant struct { ID int64 Person - Company string + Company string + Questionaire string } type Briefing struct {