10 lines
214 B
C#
10 lines
214 B
C#
namespace BlueMine.Redmine
|
|
{
|
|
public interface IRedmineCache<T>
|
|
{
|
|
void RefreshCache(List<T> newItems);
|
|
void InvalidateCache();
|
|
bool IsCacheValid();
|
|
List<T> GetItems();
|
|
}
|
|
} |