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; }