Files
maestro/src/modules/auth/dtos/login.ts
T
2022-06-27 19:22:36 -03:00

13 lines
202 B
TypeScript

import { ApiProperty } from '@nestjs/swagger';
export class LoginDto {
@ApiProperty()
username: string;
@ApiProperty()
password: string;
@ApiProperty({ required: false })
totp: string;
}