14 lines
305 B
TypeScript
14 lines
305 B
TypeScript
export declare class UpdateInventoryDto {
|
|
productId?: number;
|
|
quantity?: number;
|
|
unit?: string;
|
|
location?: string;
|
|
purchaseDate?: string;
|
|
bestBeforeDate?: string;
|
|
brand?: string;
|
|
receiptName?: string;
|
|
opened?: boolean;
|
|
suitableFor?: string;
|
|
comment?: string;
|
|
}
|