Try your search with a different keyword or use * as a wildcard.
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,
}