mirror of
https://github.com/RaindropViewer/RaindropViewer.git
synced 2026-07-29 19:03:10 +00:00
27 lines
572 B
C#
27 lines
572 B
C#
using Raindrop.DS;
|
|
|
|
namespace Raindrop.UI.Model
|
|
{
|
|
internal class MapCache : ICache
|
|
{
|
|
public bool Exists(string key)
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
|
|
public T Get<T>(string key)
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
|
|
public void Remove(string key)
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
|
|
public void Set<T>(string key, T value)
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
}
|
|
} |