Last active
September 19, 2021 13:12
-
-
Save rskhan167/6615f1c4a7f418ac2752fefd4fc18643 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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