issue #41
All checks were successful
Test CI / build (push) Successful in 1m21s

- 비밀번호 초기화 로직 1차 구현(테스트 필요)
This commit is contained in:
geonhee-min
2025-12-02 12:35:45 +09:00
parent 58d092536e
commit 0f0717fc79
25 changed files with 729 additions and 46 deletions

View File

@@ -1,7 +1,6 @@
export class LoginResponseDto {
success: boolean;
import { BaseResponseDto } from "../base-response.dto";
export class LoginResponseDto extends BaseResponseDto {
accessToken?: string;
refreshToken?: string;
message?: string;
error?: string;
}