UNPKG

@arsendoman/book-publisher-store

Version:

A Nest.js package for book publishing and storing

13 lines (11 loc) 267 B
import { ApiProperty } from '@nestjs/swagger'; import { IsEmail, IsNotEmpty } from 'class-validator'; export class AuthLoginDto { @ApiProperty() @IsEmail() @IsNotEmpty() readonly email: string; @ApiProperty() @IsNotEmpty() readonly password: string; }