Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Seo;
///
/// Represents WWW requirement
///
public enum WwwRequirement
{
///
/// Doesn't matter (do nothing)
///
NoMatter = 0,
///
/// Pages should have WWW prefix
///
WithWww = 10,
///
/// Pages should not have WWW prefix
///
WithoutWww = 20
}