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