This commit is contained in:
Bastian Wagner
2026-06-09 09:45:33 +02:00
commit 537c7cbbee
124 changed files with 27283 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
export class LoginDto {
email?: string;
password?: string;
}

View File

@@ -0,0 +1,3 @@
export class RefreshTokenDto {
refreshToken?: string;
}

View File

@@ -0,0 +1,5 @@
export class RegisterDto {
email?: string;
name?: string;
password?: string;
}