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

export class fileUploadDto {
    @ApiProperty({ type: 'string', format: 'binary' })
    // image: any;
    file: any;
}