GiantsTools/Giants.Services/Utility/ISimpleMemoryCache.cs

13 lines
242 B
C#
Raw Normal View History

2022-09-09 07:31:24 +02:00
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Giants.Services.Utility
{
public interface ISimpleMemoryCache<TRecord>
{
Task<IEnumerable<TRecord>> GetItems();
void Invalidate();
}
}