10 lines
186 B
Go
10 lines
186 B
Go
package skill
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
// Skill represents a selectable skill from the catalog (for profile skill selection).
|
|
type Skill struct {
|
|
ID uuid.UUID
|
|
Name string
|
|
}
|