8 lines
112 B
Go
8 lines
112 B
Go
package models
|
|
|
|
type Participant struct {
|
|
ID string `gorm:"primaryKey"`
|
|
|
|
Firstname string
|
|
Lastname string
|
|
}
|