Files
mtlsz-frontend-packages/src/interfaces/generic-user.ts
2025-07-23 20:37:00 +02:00

8 lines
169 B
TypeScript

export interface GenericUser {
firstName: string | null;
lastName: string | null;
email: string | null;
phone: string | null;
keycloakUserId: string | null;
}