1
0
Files
aaaa/src/comments/dto/create-comment.dto.ts
2025-11-13 11:09:27 +04:00

10 lines
244 B
TypeScript

import { ApiProperty } from "@nestjs/swagger";
import { IsString, Length } from "class-validator";
export class CreateCommentDto {
@ApiProperty({ example: "Мой комментарий" })
@IsString()
@Length(1, 1000)
text: string;
}