forked from Yara724/api
13 lines
289 B
TypeScript
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;
|
|
}
|