remove unused DTO

This commit is contained in:
Michel Heusschen
2023-02-10 10:05:25 +01:00
parent 22a973e6e0
commit 2e844696fc
@@ -1,8 +0,0 @@
import { ApiProperty } from '@nestjs/swagger';
import { IsNotEmpty } from 'class-validator';
export class AssetFileUploadDto {
@IsNotEmpty()
@ApiProperty({ type: 'string', format: 'binary' })
assetData!: any;
}