namespace ModernKeePass.Application.Common.Interfaces { public interface ISettingsProxy { T GetSetting(string property, T defaultValue = default); void PutSetting(string property, T value); } }