export interface Education {
    school?: string;
    schoolType?: string;
    fieldOfStudy?: string;
    degree?: string;
    startYear?: number;
    endYear?: number;
}
export default Education;
