mirror of
https://github.com/dadosfera/maestro.git
synced 2026-08-31 19:58:21 +00:00
13 lines
202 B
TypeScript
13 lines
202 B
TypeScript
import { ApiProperty } from '@nestjs/swagger';
|
|
|
|
export class LoginDto {
|
|
@ApiProperty()
|
|
username: string;
|
|
|
|
@ApiProperty()
|
|
password: string;
|
|
|
|
@ApiProperty({ required: false })
|
|
totp: string;
|
|
}
|