import PasswordType from '../../Users/PasswordType';
/**
 * The user interface for the Import process
 *
 * @interface UserInterface
 */
export default interface UserInterface {
    contractorId: string;
    socialSecurityNumber: string;
    email: string;
    firstName: string;
    lastName: string;
    passwordType: PasswordType;
    password: string;
}
