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