mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 23:50:18 -04:00
8 lines
230 B
C#
8 lines
230 B
C#
![]() |
namespace ModernKeePass.Application.Common.Interfaces
|
|||
|
{
|
|||
|
public interface ISettingsProxy
|
|||
|
{
|
|||
|
T GetSetting<T>(string property, T defaultValue = default);
|
|||
|
void PutSetting<T>(string property, T value);
|
|||
|
}
|
|||
|
}
|