@@ -1,10 +1,11 @@
|
||||
namespace Wino.Core.Domain.Interfaces;
|
||||
|
||||
public interface IConfigurationService
|
||||
namespace Wino.Core.Domain.Interfaces
|
||||
{
|
||||
void Set(string key, object value);
|
||||
T Get<T>(string key, T defaultValue = default);
|
||||
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);
|
||||
void SetRoaming(string key, object value);
|
||||
T GetRoaming<T>(string key, T defaultValue = default);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user