feat: add public employee profile view and implement ratings review page components
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
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;
|
||||
};
|
||||
Reference in New Issue
Block a user