Files
Fabric/Fabric.Backend.Center/src/auth/dto.refresh.dto.ts

8 lines
140 B
TypeScript

import { IsString, MinLength } from 'class-validator';
export class RefreshDto {
@IsString()
@MinLength(16)
refreshToken!: string;
}