14 lines
254 B
Go
14 lines
254 B
Go
package training
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
type FeedbackID uuid.UUID
|
|
|
|
type Feedback struct {
|
|
ID FeedbackID
|
|
AttendeeID AttendeeID
|
|
Rating int
|
|
Comment string
|
|
IsAnonymous bool
|
|
IsSharingAllowed bool
|
|
}
|