mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-04 08:00:16 -04:00
8 lines
180 B
C#
8 lines
180 B
C#
namespace ModernKeePass.Interfaces
|
|
{
|
|
public interface ISettings
|
|
{
|
|
T GetSetting<T>(string property);
|
|
void PutSetting<T>(string property, T value);
|
|
}
|
|
} |