export default interface InventoryItemQuantity {
    locationId: string;
    inventoryStatus: string;
    quantity: number;
}
