Webiant Logo Webiant Logo
  1. No results found.

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

RobotsTxtSettings.cs

using Nop.Core.Configuration;

namespace Nop.Core.Domain.Security;

/// 
/// robots.txt settings
/// 
public partial class RobotsTxtSettings : ISettings
{
    /// 
    /// Disallow paths
    /// 
    public List DisallowPaths { get; set; } = new();

    /// 
    /// Localizable disallow paths
    /// 
    public List LocalizableDisallowPaths { get; set; } = new();

    /// 
    /// Disallow languages
    /// 
    public List DisallowLanguages { get; set; } = new();

    /// 
    /// Additions rules
    /// 
    public List AdditionsRules { get; set; } = new();

    /// 
    /// Is sitemap.xml allow
    /// 
    public bool AllowSitemapXml { get; set; } = true;
}