packages/server/src/modules/auth/auth.interface.ts
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;
}