Files
modernkeepass/ModernKeePass.Application.12/Common/Interfaces/ISettingsProxy.cs

8 lines
230 B
C#
Raw Normal View History

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