initial commit
This commit is contained in:
10
BlueMine/Redmine/IRedmineCache.cs
Normal file
10
BlueMine/Redmine/IRedmineCache.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace BlueMine.Redmine
|
||||
{
|
||||
public interface IRedmineCache<T>
|
||||
{
|
||||
void RefreshCache(List<T> newItems);
|
||||
void InvalidateCache();
|
||||
bool IsCacheValid();
|
||||
List<T> GetItems();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user