19 lines
272 B
Go
19 lines
272 B
Go
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
|
|
}
|