import { ApiProperty } from '@nestjs/swagger'; import { IsNotEmpty, IsString } from 'class-validator'; export class UserRefreshTokenDto { @ApiProperty() @IsString() @IsNotEmpty() refreshToken: string; }