18 lines
245 B
Go
18 lines
245 B
Go
package profile
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
type Experience struct {
|
|
ID uuid.UUID
|
|
ProfileID uuid.UUID
|
|
CompanyName string
|
|
Position string
|
|
StartDate *time.Time
|
|
EndDate *time.Time
|
|
Description string
|
|
}
|