Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Catalog;
///
/// Represents a backorder mode
///
public enum BackorderMode
{
///
/// No backorders
///
NoBackorders = 0,
///
/// Allow qty below 0
///
AllowQtyBelow0 = 1,
///
/// Allow qty below 0 and notify customer
///
AllowQtyBelow0AndNotifyCustomer = 2,
}