Skip to content

Instantly share code, notes, and snippets.

@rskhan167
Last active September 19, 2021 13:12
Show Gist options
  • Save rskhan167/6615f1c4a7f418ac2752fefd4fc18643 to your computer and use it in GitHub Desktop.
Save rskhan167/6615f1c4a7f418ac2752fefd4fc18643 to your computer and use it in GitHub Desktop.
import { IsNotEmpty, IsString, IsOptional } from 'class-validator';
export class CreateUserDto {
@IsNotEmpty()
@IsString()
name: string;
@IsNotEmpty()
@IsString()
email: string;
@IsNotEmpty()
@IsString()
password: string;
@IsOptional()
profile_image: string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment