import { ApiProperty } from '@nestjs/swagger'; import { ConstructableDto } from 'src/shared/dto/constructable.dto'; export class UserLoginResponseDto extends ConstructableDto { @ApiProperty() accessToken: string; @ApiProperty() expiresIn: number; }