17 lines
281 B
Go
17 lines
281 B
Go
package training
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
type AttendeeID uuid.UUID
|
|
|
|
type Attendee struct {
|
|
ID AttendeeID
|
|
DateID DateID
|
|
Name string
|
|
Email string
|
|
Company string
|
|
Role string
|
|
IsStudent bool
|
|
HasAttended bool
|
|
HasPaid bool
|
|
}
|