mirror of
https://github.com/HamzaSha1/zod-backend.git
synced 2025-11-26 16:44:54 +00:00
8 lines
128 B
TypeScript
8 lines
128 B
TypeScript
export class SendForgetPasswordOtpResponseDto {
|
|
email!: string;
|
|
|
|
constructor(email: string) {
|
|
this.email = email;
|
|
}
|
|
}
|