mirror of
https://github.com/Readarr/Readarr.git
synced 2026-03-29 18:14:28 -04:00
13 lines
274 B
C#
13 lines
274 B
C#
using System;
|
|
|
|
namespace NzbDrone.Common.Cache
|
|
{
|
|
public interface ICached<T>
|
|
{
|
|
void Set(string key, T value);
|
|
T Get(string key, Func<T> function);
|
|
bool ContainsKey(string key);
|
|
void Clear();
|
|
void Remove(string key);
|
|
}
|
|
} |