Instructor Form zum Laufen gebracht

This commit is contained in:
2023-10-20 16:33:00 +02:00
parent b78e30d109
commit d054b3644b
5 changed files with 55 additions and 17 deletions

View File

@ -8,7 +8,10 @@ type Person struct {
LastName string
}
type Instructor Person
type Instructor struct {
Person
PersonnelID int
}
type Participant struct {
Person