import { IsInt, IsPositive } from 'class-validator'; export class CreatePantryItemDto { @IsInt() @IsPositive() productId: number; }