diff --git a/packages/types/types.go b/packages/types/types.go index baf87ee..9e1542d 100644 --- a/packages/types/types.go +++ b/packages/types/types.go @@ -7,10 +7,28 @@ type Person struct { type Instructor Person +type QAElement struct { + ID int + Text string +} + +type Answer QAElement + +type Question struct { + QAElement + Answers []Answer +} + +type Questionaire struct { + UUID string + Questions []Question +} + type Participant struct { ID int64 Person - Company string + Company string + Questionaire Questionaire } type Briefing struct {