namespace Wino.Core.Domain.Interfaces; public interface IConfigurationService { bool Contains(string key); void Set(string key, object value); T Get(string key, T defaultValue = default); void SetRoaming(string key, object value); T GetRoaming(string key, T defaultValue = default); }