initial commit
This commit is contained in:
18
internal/domain/profileold/education.go
Normal file
18
internal/domain/profileold/education.go
Normal file
@@ -0,0 +1,18 @@
|
||||
package profile
|
||||
|
||||
import (
|
||||
"time"
|
||||
|
||||
"github.com/google/uuid"
|
||||
)
|
||||
|
||||
type Education struct {
|
||||
ID uuid.UUID
|
||||
ProfileID uuid.UUID
|
||||
SchoolName string
|
||||
Degree string
|
||||
FieldOfStudy string
|
||||
StartDate *time.Time
|
||||
EndDate *time.Time
|
||||
Description string
|
||||
}
|
||||
Reference in New Issue
Block a user