mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-04 16:10:16 -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
19 lines
419 B
C#
19 lines
419 B
C#
using System;
|
|
using ModernKeePass.Interfaces;
|
|
|
|
namespace ModernKeePassApp.Test.Mock
|
|
{
|
|
public class SettingsServiceMock : ISettingsService
|
|
{
|
|
public T GetSetting<T>(string property, T defaultValue = default(T))
|
|
{
|
|
return defaultValue;
|
|
}
|
|
|
|
public void PutSetting<T>(string property, T value)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|