13 lines
163 B
Go
13 lines
163 B
Go
package profile
|
|
|
|
import (
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
type Award struct {
|
|
ID uuid.UUID
|
|
ProfileID uuid.UUID
|
|
Name string
|
|
Description string
|
|
}
|