22 lines
481 B
C#
22 lines
481 B
C#
namespace Nop.Core.Domain.Catalog;
|
|
|
|
/// <summary>
|
|
/// Represents a method of inventory management
|
|
/// </summary>
|
|
public enum ManageInventoryMethod
|
|
{
|
|
/// <summary>
|
|
/// Don't track inventory for product
|
|
/// </summary>
|
|
DontManageStock = 0,
|
|
|
|
/// <summary>
|
|
/// Track inventory for product
|
|
/// </summary>
|
|
ManageStock = 1,
|
|
|
|
/// <summary>
|
|
/// Track inventory for product by product attributes
|
|
/// </summary>
|
|
ManageStockByAttributes = 2,
|
|
} |