Files
flashcards-api/src/users/dto/create-user.dto.ts
2023-05-21 14:52:55 +02:00

14 lines
206 B
TypeScript

import { IsEmail, IsString, Length } from 'class-validator';
export class CreateUserDto {
@IsEmail()
email: string;
@IsString()
password: string;
@IsString()
@Length(2, 40)
name: string;
}