2023-10-18 13:40:21 +02:00
|
|
|
package models
|
|
|
|
|
|
|
|
type Participant struct {
|
2023-10-28 20:50:06 +02:00
|
|
|
ID string `gorm:"primaryKey"`
|
2023-10-18 13:40:21 +02:00
|
|
|
|
|
|
|
Firstname string
|
|
|
|
Lastname string
|
2023-11-05 14:36:33 +01:00
|
|
|
|
|
|
|
Token uint
|
|
|
|
|
|
|
|
Attributes map[string]string
|
2023-10-18 13:40:21 +02:00
|
|
|
}
|