Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

ManageInventoryMethod.cs

namespace Nop.Core.Domain.Catalog;

/// 
/// Represents a method of inventory management
/// 
public enum ManageInventoryMethod
{
    /// 
    /// Don't track inventory for product
    /// 
    DontManageStock = 0,

    /// 
    /// Track inventory for product
    /// 
    ManageStock = 1,

    /// 
    /// Track inventory for product by product attributes
    /// 
    ManageStockByAttributes = 2,
}