using Raindrop.DS; namespace Raindrop.UI.Model { internal class MapCache : ICache { public bool Exists(string key) { throw new System.NotImplementedException(); } public T Get(string key) { throw new System.NotImplementedException(); } public void Remove(string key) { throw new System.NotImplementedException(); } public void Set(string key, T value) { throw new System.NotImplementedException(); } } }