Files

8 lines
180 B
C#
Raw Permalink Normal View History

namespace ModernKeePass.Interfaces
{
public interface ISettings
{
T GetSetting<T>(string property);
void PutSetting<T>(string property, T value);
}
}