Webiant Logo Webiant Logo
  1. No results found.

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

NopSettingsDefaults.cs

using Nop.Core.Caching;
using Nop.Core.Domain.Configuration;

namespace Nop.Services.Configuration;

/// 
/// Represents default values related to settings
/// 
public static partial class NopSettingsDefaults
{
    #region Caching defaults

    /// 
    /// Gets a key for caching
    /// 
    public static CacheKey SettingsAllAsDictionaryCacheKey => new("Nop.setting.all.dictionary.", NopEntityCacheDefaults.Prefix);

    #endregion
}