Files
scheduler-back/src/modules/account/dto/verifyCode/verify-code-response.dto.ts
2025-11-21 16:31:33 +09:00

5 lines
97 B
TypeScript

export class VerifyCodeResponseDto {
verified: boolean;
message?: string;
error?: string;
}