9 lines
92 B
Go
9 lines
92 B
Go
|
package models
|
||
|
|
||
|
type Participant struct {
|
||
|
ID string
|
||
|
|
||
|
Firstname string
|
||
|
Lastname string
|
||
|
}
|