add auth and user handling

This commit is contained in:
Anika Raemer 2025-09-21 19:49:54 +02:00
parent db057ce342
commit 1fce467571
19 changed files with 356 additions and 32 deletions

View file

@ -0,0 +1,9 @@
import { UserDto } from "./UserDto";
/**
* DTO used for user creation
*/
export class CreateUserRequestDto {
userData: UserDto;
password: string;
}