using System.Collections.Generic; using System.Threading.Tasks; namespace Giants.Services.Utility { public interface ISimpleMemoryCache { Task> GetItems(); void Invalidate(); } }