import { ApiProperty } from '@nestjs/swagger';

export class ImportExcelDto {
  @ApiProperty({ type: 'string', format: 'binary', required: true })
  file: any;
}
