Files
flashcards-api/src/modules/users/dto/create-user.dto.ts
2023-06-12 20:01:07 +02:00

11 lines
217 B
TypeScript

import { Length, Matches } from 'class-validator';
export class CreateUserDto {
@Length(3, 10)
login: string;
@Length(6, 20)
password: string;
@Matches(/^[\w-.]+@([\w-]+\.)+[\w-]{2,4}$/)
email: string;
}