Files
zod-backend/src/auth/dtos/response/send-forget-password.response.dto.ts
Abdalhamid Alhamad 90ee8023e6 feat:forget password
2024-12-08 13:15:38 +03:00

8 lines
128 B
TypeScript

export class SendForgetPasswordOtpResponseDto {
email!: string;
constructor(email: string) {
this.email = email;
}
}