probo/models/participant.go

9 lines
112 B
Go
Raw Normal View History

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
}