1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-09-27 17:32:13 +02:00
GiantsTools/Giants.Services/Utility/ISimpleMemoryCache.cs
2022-09-08 22:31:24 -07:00

13 lines
242 B
C#

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