Initial commit.
This commit is contained in:
11
Wino.Core.Domain/Interfaces/IConfigurationService.cs
Normal file
11
Wino.Core.Domain/Interfaces/IConfigurationService.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace Wino.Core.Domain.Interfaces
|
||||
{
|
||||
public interface IConfigurationService
|
||||
{
|
||||
void Set(string key, object value);
|
||||
T Get<T>(string key, T defaultValue = default);
|
||||
|
||||
void SetRoaming(string key, object value);
|
||||
T GetRoaming<T>(string key, T defaultValue = default);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user