import { ApiProperty } from "@nestjs/swagger"; export class UserCommentDto { @ApiProperty({ type: Boolean }) isAccept: boolean; @ApiProperty({ type: "string", format: "binary", required: false }) file?: Express.Multer.File; @ApiProperty({ type: String }) branch?: string; }