using Nop.Core.Caching; namespace Nop.Services.Attributes; /// /// Represents default values related to attributes services /// public static partial class NopAttributeDefaults { #region Caching defaults /// /// Gets a key for caching attribute values of the attribute /// /// /// {0} : attribute type /// {1} : attribute ID /// public static CacheKey AttributeValuesByAttributeCacheKey => new("Nop.attributevalue.byattribute.{0}.{1}"); #endregion }