23 lines
433 B
TypeScript
23 lines
433 B
TypeScript
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;
|
|
};
|