src/comment/dtos/request/update-comment.dto.ts
DTO for updating a comment request.
OmitType(
PartialType(CreateCommentRequestDto),
['titleId'],
)
import { OmitType, PartialType } from '@nestjs/swagger';
import { CreateCommentRequestDto } from './create-comment.dto';
/**
* DTO for updating a comment request.
*/
export class UpdateCommentRequestDto extends OmitType(
PartialType(CreateCommentRequestDto),
['titleId'],
) {}