forked from Yara724/api
Initial commit after migration to gitea
This commit is contained in:
12
src/claim-request-management/dto/user-comment.dto.ts
Normal file
12
src/claim-request-management/dto/user-comment.dto.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user