Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Messages;
///
/// Represents priority of queued email
///
public enum QueuedEmailPriority
{
///
/// Low
///
Low = 0,
///
/// High
///
High = 5
}