Webiant Logo Webiant Logo
  1. No results found.

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

BackorderMode.cs

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,
}