1 2 3 4 5 6
import { IsNotEmpty } from 'class-validator'; export class SessionTokenDto { @IsNotEmpty() token: string; }