mirror of
https://github.com/ershisan99/flashcards-api.git
synced 2025-12-16 20:59:26 +00:00
14 lines
206 B
TypeScript
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;
|
|
}
|