10 lines
245 B
C#
10 lines
245 B
C#
|
|
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
|
|||
|
|
{
|
|||
|
|
}
|