This commit is contained in:
2025-04-11 11:40:09 +02:00
parent 209775f968
commit 696c3577a7
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;
}