Skip to content

Instantly share code, notes, and snippets.

@Vatsalya-singhi
Created March 27, 2025 18:38
Show Gist options
  • Save Vatsalya-singhi/f9b5cd5c218d17e3ca68a9b7f71409bd to your computer and use it in GitHub Desktop.
Save Vatsalya-singhi/f9b5cd5c218d17e3ca68a9b7f71409bd to your computer and use it in GitHub Desktop.
import { IsString, IsInt, MinLength, Min } from 'class-validator';
export class CreateUserDto {
@IsString()
@MinLength(3)
name: string;
@IsInt()
@Min(18)
age: number;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment