12 lines
156 B
Go
12 lines
156 B
Go
package models
|
|
|
|
type Participant struct {
|
|
ID string `gorm:"primaryKey"`
|
|
|
|
Firstname string
|
|
Lastname string
|
|
|
|
Token uint
|
|
|
|
Attributes map[string]string
|
|
}
|