Files
yara724api/src/claim-request-management/dto/user-comment.dto.ts

13 lines
289 B
TypeScript

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;
}