type Session hinzugefügt
This commit is contained in:
parent
5019432b24
commit
4e0c8ec1ac
@ -1,5 +1,7 @@
|
|||||||
package types
|
package types
|
||||||
|
|
||||||
|
import "github.com/google/uuid"
|
||||||
|
|
||||||
type Person struct {
|
type Person struct {
|
||||||
ID int64
|
ID int64
|
||||||
FirstName string
|
FirstName string
|
||||||
@ -54,3 +56,12 @@ type OverviewTableData struct {
|
|||||||
ParticipantLastName string
|
ParticipantLastName string
|
||||||
ParticipantCompany string
|
ParticipantCompany string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type Session struct {
|
||||||
|
ID uuid.UUID
|
||||||
|
InstructorID int64
|
||||||
|
BriefingID int64
|
||||||
|
Logins []string
|
||||||
|
ParticipantIDs []int64
|
||||||
|
QuestionIDs []int64
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user