8 lines
174 B
Go
8 lines
174 B
Go
package dto
|
|
|
|
// Skill represents a selectable skill from the catalog (for profile skill selection).
|
|
type Skill struct {
|
|
ID string `json:"id"`
|
|
Name string `json:"name"`
|
|
}
|