Alle nötigen types für Questionaire eingefügt

This commit is contained in:
Jason Streifling 2023-10-10 18:50:54 +02:00
parent 82870e100f
commit f6a073fc39

View File

@ -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 {