initial commit
This commit is contained in:
17
internal/domain/profileold/experience.go
Normal file
17
internal/domain/profileold/experience.go
Normal file
@@ -0,0 +1,17 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user