7 lines
136 B
C#
7 lines
136 B
C#
namespace Harmonia.Core.Caching;
|
|
|
|
public interface ICache<TKey, TValue>
|
|
{
|
|
TValue? Get(TKey key);
|
|
TValue? Refresh(TKey key);
|
|
} |