export interface UserInformation {
    loginName: string;
    workEmail: string;
    workPhone: string;
    cellPhone: string;
    aboutMe: string;
    department: string;
    office: string;
    birthday?: Date;
    jobTitle: string;
    userName: string;
    pastProjects: Array<string>;
    schools: Array<string>;
    skills: Array<string>;
    interests: Array<string>;
    sipAddress: string;
}
