SzkoleniaRiskoff/src/Libraries/Nop.Core/Caching/ISynchronizedMemoryCache.cs

10 lines
245 B
C#
Raw Normal View History

2024-08-21 06:17:23 -04:00
using Microsoft.Extensions.Caching.Memory;
namespace Nop.Core.Caching;
/// <summary>
/// Represents a local in-memory cache with distributed synchronization
/// </summary>
public partial interface ISynchronizedMemoryCache : IMemoryCache
{
}