using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.FSE.BL { /// /// Represents an in-memory cache dictionary. /// public interface IMemoryCacheDictionary { /// /// Gets the cache name. /// String Name { get; } /// /// Gets the count of items. /// int Count { get; } /// /// Clears this all items from cache. /// void Clear(); } }