File size: 212 Bytes
f3abb0d
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import { ApiProperty } from '@nestjs/swagger';
import { IsNotEmpty, IsString } from 'class-validator';

export class UserRefreshTokenDto {
  @ApiProperty()
  @IsString()
  @IsNotEmpty()
  refreshToken: string;
}