mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-22 08:46:42 +02:00
16 lines
282 B
TypeScript
16 lines
282 B
TypeScript
import { IsEmail, IsString, MinLength, MaxLength, IsOptional } from 'class-validator';
|
|
|
|
export class RegisterDto {
|
|
@IsEmail()
|
|
email: string;
|
|
|
|
@IsString()
|
|
@MinLength(8)
|
|
@MaxLength(128)
|
|
password: string;
|
|
|
|
@IsString()
|
|
@IsOptional()
|
|
@MaxLength(255)
|
|
name?: string;
|
|
}
|