src/authentication/request/dto/get-access-token.dto.ts
Properties |
Type : string
|
Decorators :
@ApiProperty({type: String})
|
| password |
Type : string
|
Decorators :
@ApiProperty({type: String})
|
import { ApiProperty } from '@nestjs/swagger';
export class GetAccessTokenDTO {
@ApiProperty({ type: String })
email: string;
@ApiProperty({ type: String })
password: string;
}