Try your search with a different keyword or use * as a wildcard.
using Nop.Core.Configuration;
namespace Nop.Core.Domain.Seo;
///
/// SEO settings
///
public partial class SeoSettings : ISettings
{
///
/// Page title separator
///
public string PageTitleSeparator { get; set; }
///
/// Page title SEO adjustment
///
public PageTitleSeoAdjustment PageTitleSeoAdjustment { get; set; }
///
/// A value indicating whether product META descriptions will be generated automatically (if not entered)
///
public bool GenerateProductMetaDescription { get; set; }
///
/// A value indicating whether we should convert non-western chars to western ones
///
public bool ConvertNonWesternChars { get; set; }
///
/// A value indicating whether unicode chars are allowed
///
public bool AllowUnicodeCharsInUrls { get; set; }
///
/// A value indicating whether canonical URL tags should be used
///
public bool CanonicalUrlsEnabled { get; set; }
///
/// A value indicating whether to use canonical URLs with query string parameters
///
public bool QueryStringInCanonicalUrlsEnabled { get; set; }
///
/// WWW requires (with or without WWW)
///
public WwwRequirement WwwRequirement { get; set; }
///
/// A value indicating whether Twitter META tags should be generated
///
public bool TwitterMetaTags { get; set; }
///
/// A value indicating whether Open Graph META tags should be generated
///
public bool OpenGraphMetaTags { get; set; }
///
/// Slugs (seName) reserved for some other needs
///
public List ReservedUrlRecordSlugs { get; set; }
///
/// Custom tags in the ]]> section
///
public string CustomHeadTags { get; set; }
///
/// A value indicating whether Microdata tags should be generated
///
public bool MicrodataEnabled { get; set; }
}