UNPKG

@arsendoman/book-publisher-store

Version:

A Nest.js package for book publishing and storing

10 lines (8 loc) 206 B
import { ApiProperty } from '@nestjs/swagger'; import { IsNotEmpty, Length } from 'class-validator'; export class BookCommentCreateDto { @ApiProperty() @IsNotEmpty() @Length(5, 20) text: string; }