Alle nötigen types für Questionaire eingefügt
This commit is contained in:
		@@ -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 {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user