Alle nötigen types für Questionaire eingefügt
This commit is contained in:
parent
82870e100f
commit
f6a073fc39
@ -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
|
||||
Questionaire Questionaire
|
||||
}
|
||||
|
||||
type Briefing struct {
|
||||
|
Loading…
x
Reference in New Issue
Block a user