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