import { IProductVariantUpdate } from './product-variant-update.interface';
export interface IProductVariantWithInventoryUpdate extends IProductVariantUpdate {
    StockLowAlertLevel: number;
    StockReorderLevel: number;
    BufferStockLevel: number;
}
