Files
Wino-Mail/Wino.Core.Domain/Interfaces/IConfigurationService.cs
Burak Kaan Köse cf9869b71e Revert "File scoped namespaces"
This reverts commit d31d8f574e.
2025-02-16 11:43:30 +01:00

12 lines
315 B
C#

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);
}
}