feat: PantryItem (Baslager) - tabell, backend-modul och frontend-sida

This commit is contained in:
Nils-Johan Gynther
2026-04-15 22:06:40 +02:00
parent 65ec74ac7d
commit 47d1aafd9e
12 changed files with 373 additions and 1 deletions
@@ -0,0 +1,7 @@
import { IsInt, IsPositive } from 'class-validator';
export class CreatePantryItemDto {
@IsInt()
@IsPositive()
productId: number;
}