import { ApiProperty } from '@nestjs/swagger';
import { IsString, MaxLength } from 'class-validator';

export class PasswordResetVerifyDto {
  @ApiProperty({ example: 'pr_...' })
  @IsString()
  @MaxLength(500)
  token!: string;
}
