mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-11-01 05:15:36 +01:00
13 lines
242 B
C#
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();
|
|||
|
}
|
|||
|
}
|