streamflix-api / src /modules /super-admin /auth /dto /refresh-token.dto.ts
Akshar2325
✨ feat(admin): introduce super admin models and authentication
f3abb0d
Raw
History Blame
218 Bytes
import { ApiProperty } from '@nestjs/swagger';
import { IsNotEmpty, IsString } from 'class-validator';
export class SuperAdminRefreshTokenDto {
@ApiProperty()
@IsString()
@IsNotEmpty()
refreshToken: string;
}