Files
edr-platform/apps/edr-freight-web/backoffice/src/user-management/dto/teamMember/teamMember.ts
2026-07-10 10:41:48 +03:00

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
};
}