You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tryFullStack/backend/src/auth/dto/login-user.dto.ts

11 lines
195 B

2 weeks ago
import { IsString, MinLength } from 'class-validator';
3 weeks ago
export class LoginUserDto {
2 weeks ago
@IsString()
readonly name: string;
3 weeks ago
2 weeks ago
@IsString()
@MinLength(4)
readonly password: string;
}