import { IsString, IsEnum, IsOptional } from 'class-validator';
import { DocumentType } from '@livebeauty/shared';

export class DocumentUploadDto {
  @IsString()
  verificationId: string;

  @IsEnum(DocumentType)
  documentType: DocumentType;

  @IsString()
  @IsOptional()
  description?: string;
}