mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-09-08 05:25:41 +00:00
33 lines
599 B
TypeScript
33 lines
599 B
TypeScript
export interface TeamMemberDto {
|
|
status: string;
|
|
organizationId: string;
|
|
id: string;
|
|
isCurrent: boolean;
|
|
name: string | null;
|
|
employeePositions?: Array<{
|
|
id: string;
|
|
employeeId: string;
|
|
position: {
|
|
id: string;
|
|
name: {
|
|
am: string;
|
|
en: string;
|
|
};
|
|
};
|
|
}>;
|
|
user: {
|
|
id: string;
|
|
name: {
|
|
am: string;
|
|
en: string;
|
|
};
|
|
username: string;
|
|
email: string;
|
|
userType: "employee" | string;
|
|
sharepointId: string | null;
|
|
status: "accepted" | string;
|
|
phoneNumber: string;
|
|
hasSetPassword: boolean
|
|
};
|
|
}
|