import { ApiProperty } from "@nestjs/swagger"; export class FileDto { @ApiProperty() readonly uuid: string; @ApiProperty() readonly name: string; @ApiProperty() readonly type: string; @ApiProperty() readonly size: string; @ApiProperty() readonly dir: string; @ApiProperty() readonly ext: string; }