Webiant Logo Webiant Logo
  1. No results found.

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

AzureBlobDefaults.cs

using Nop.Core.Caching;

namespace Nop.Plugin.Misc.AzureBlob;

/// 
/// Represents plugin constants
/// 
public static class AzureBlobDefaults
{
    #region Caching defaults

    /// 
    /// Gets a key to cache whether thumb exists
    /// 
    /// 
    /// {0} : thumb file name
    /// 
    public static CacheKey ThumbExistsCacheKey => new("Nop.azure.thumb.exists.{0}");

    /// 
    /// Gets a key pattern to clear cache
    /// 
    public static string ThumbsExistsPrefix => "Nop.azure.thumb.exists.";

    #endregion
}