15 lines
323 B
TypeScript
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;
|
|
}
|