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