Try your search with a different keyword or use * as a wildcard.
using Nop.Core.Configuration;
namespace Nop.Core.Domain.Common;
///
/// Admin area settings
///
public partial class AdminAreaSettings : ISettings
{
///
/// Default grid page size
///
public int DefaultGridPageSize { get; set; }
///
/// Popup grid page size (for popup pages)
///
public int PopupGridPageSize { get; set; }
///
/// A comma-separated list of available grid page sizes
///
public string GridPageSizes { get; set; }
///
/// Additional settings for rich editor
///
public string RichEditorAdditionalSettings { get; set; }
///
/// A value indicating whether to javascript is supported in rich editor
///
public bool RichEditorAllowJavaScript { get; set; }
///
/// A value indicating whether to style tag is supported in rich editor
///
public bool RichEditorAllowStyleTag { get; set; }
///
/// A value indicating whether to use rich text editor on email messages for customers
///
public bool UseRichEditorForCustomerEmails { get; set; }
///
/// A value indicating whether to use rich editor on message templates and campaigns details pages
///
public bool UseRichEditorInMessageTemplates { get; set; }
///
/// Gets or sets a value indicating whether advertisements (news) should be hidden
///
public bool HideAdvertisementsOnAdminArea { get; set; }
///
/// Gets or sets a value indicating whether we should check the store for license compliance
///
public bool CheckLicense { get; set; }
///
/// Gets or sets title of last news (admin area)
///
public string LastNewsTitleAdminArea { get; set; }
///
/// Gets or sets a value indicating whether to use IsoDateFormat in JSON results (used for avoiding issue with dates in grids)
///
public bool UseIsoDateFormatInJsonResult { get; set; }
///
/// Gets or sets a value indicating whether to documantation reference links on pages
///
public bool ShowDocumentationReferenceLinks { get; set; }
}