Initial
This commit is contained in:
4
listify-api/src/auth/dto/login.dto.ts
Normal file
4
listify-api/src/auth/dto/login.dto.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
export class LoginDto {
|
||||
email?: string;
|
||||
password?: string;
|
||||
}
|
||||
3
listify-api/src/auth/dto/refresh-token.dto.ts
Normal file
3
listify-api/src/auth/dto/refresh-token.dto.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
export class RefreshTokenDto {
|
||||
refreshToken?: string;
|
||||
}
|
||||
5
listify-api/src/auth/dto/register.dto.ts
Normal file
5
listify-api/src/auth/dto/register.dto.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
export class RegisterDto {
|
||||
email?: string;
|
||||
name?: string;
|
||||
password?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user