mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 15:40:18 -04:00

Added a new settings page to allow auto-save or not App now resumes correctly from suspend Settings service now allows getting default values Removed french special characters from metadata Code cleanup
8 lines
216 B
C#
8 lines
216 B
C#
namespace ModernKeePass.Interfaces
|
|
{
|
|
public interface ISettingsService
|
|
{
|
|
T GetSetting<T>(string property, T defaultValue = default(T));
|
|
void PutSetting<T>(string property, T value);
|
|
}
|
|
} |