mashafrancis/butternut-user

View on GitHub
src/app/auth/dto/token.dto.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { ApiProperty } from '@nestjs/swagger';

export class TokenDto {
    @ApiProperty()
    id: string;

    @ApiProperty()
    expiresIn: number;

    @ApiProperty()
    audience: string;

    @ApiProperty()
    issuer: string;
}