This commit is contained in:
2025-04-11 11:40:09 +02:00
parent 0daedc28dc
commit 871d41962c
5 changed files with 34 additions and 31 deletions

View File

@@ -0,0 +1,7 @@
export interface GenericUser {
firstName: string | null;
lastName: string | null;
emai: string | null;
phone: string | null;
keycloakUserId: string | null;
}