import { IsNotEmpty, IsString } from 'class-validator'; export class SetSessionDto { @IsString() @IsNotEmpty() jwt: string; }