File

packages/server/src/modules/auth/auth.interface.ts

Index

Properties

Properties

password
Type : string
Decorators :
@IsString()
username
Type : string
Decorators :
@IsString()
import { IsString } from "class-validator";

export class AuthRequest {
  @IsString()
  username: string;
  @IsString()
  password: string;
}

results matching ""

    No results matching ""