Questionaire zum type Participant hinzugefügt

This commit is contained in:
Jason Streifling 2023-10-10 17:40:29 +02:00
parent fc7aae83d2
commit 6972948ee3

View File

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