Files
recipe-app/backend/dist/inventory/dto/create-inventory.dto.d.ts
T
Nils-Johan Gynther 969dafdbc6
Test Suite / test (24.15.0) (push) Has been cancelled
Refactor code structure for improved readability and maintainability
2026-05-06 07:37:59 +02:00

15 lines
323 B
TypeScript

export declare class CreateInventoryDto {
productId: number;
quantity: number;
unit: string;
location?: string;
purchaseDate?: string;
bestBeforeDate?: string;
brand?: string;
origin?: string;
receiptName?: string;
opened?: boolean;
suitableFor?: string;
comment?: string;
}