Skip to content

Instantly share code, notes, and snippets.

@sunnyy02
Created April 2, 2022 06:10
Show Gist options
  • Save sunnyy02/c5bc05ae5679f6e65a8625e110960135 to your computer and use it in GitHub Desktop.
Save sunnyy02/c5bc05ae5679f6e65a8625e110960135 to your computer and use it in GitHub Desktop.
import { IsString, IsInt } from 'class-validator';
export class CreateCatDto {
@IsString()
name: string;
@Length(10)
description: string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment