export type PublicCompanyEmployeeView = { employeeId: string; userId: string; firstName: string; lastName: string; avatarUrl: string; }; export type FindPublicCompanyEmployeesParams = { companyId: string; }; export type FindPublicEmployeeParams = { employeeId: string; }; export type PublicEmployeeView = { employeeId: string; firstName: string; lastName: string; avatarUrl: string; };