Initial commit.
This commit is contained in:
11
Wino.Core.Domain/Interfaces/IApplicationResourceManager.cs
Normal file
11
Wino.Core.Domain/Interfaces/IApplicationResourceManager.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace Wino.Core.Domain.Interfaces
|
||||
{
|
||||
public interface IApplicationResourceManager<T>
|
||||
{
|
||||
void RemoveResource(T resource);
|
||||
void AddResource(T resource);
|
||||
bool ContainsResourceKey(string resourceKey);
|
||||
void ReplaceResource(string resourceKey, object resource);
|
||||
T GetLastResource();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user