Webiant Logo Webiant Logo
  1. No results found.

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

NopModelCacheDefaults.cs

using Nop.Core.Caching;

namespace Nop.Web.Areas.Admin.Infrastructure.Cache;

public static partial class NopModelCacheDefaults
{
    /// 
    /// Key for nopCommerce.com news cache
    /// 
    public static CacheKey OfficialNewsModelKey => new("Nop.pres.admin.official.news");

    /// 
    /// Key for categories caching
    /// 
    public static CacheKey CategoriesListKey => new("Nop.pres.admin.categories.list");

    /// 
    /// Key for manufacturers caching
    /// 
    public static CacheKey ManufacturersListKey => new("Nop.pres.admin.manufacturers.list");

    /// 
    /// Key for vendors caching
    /// 
    public static CacheKey VendorsListKey => new("Nop.pres.admin.vendors.list");
}