import { ApiProperty } from '@nestjs/swagger';
import { IsEmail } from 'class-validator';

export class PasswordResetRequestDto {
  @ApiProperty({ example: 'owner@yourstore.com' })
  @IsEmail()
  email!: string;
}
