Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Discounts;
/// <summary>
/// Represents an interaction type within the group of requirements
/// </summary>
public enum RequirementGroupInteractionType
{
/// <summary>
/// All requirements within the group must be met
/// </summary>
And = 0,
/// <summary>
/// At least one of the requirements within the group must be met
/// </summary>
Or = 2
}