web-service/apps/freeblox-web-service/src/services/auth/dtos/login-response.dto.ts

13 lines
193 B
TypeScript

import { ApiProperty } from '@nestjs/swagger';
export class LoginResponseDto {
@ApiProperty()
token: string;
@ApiProperty()
refresh: string;
@ApiProperty()
expires_in: number;
}