mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-04 08:00:16 -04:00

Refactor the Database Service (no more enum, ...) Restored the Donate page with Paypal web page Added (but not working) MS App Center integration Corrected tests accordingly WIP AOP to detect database changes
19 lines
388 B
C#
19 lines
388 B
C#
using System;
|
|
using ModernKeePass.Interfaces;
|
|
|
|
namespace ModernKeePassApp.Test.Mock
|
|
{
|
|
public class SettingsServiceMock : ISettingsService
|
|
{
|
|
public T GetSetting<T>(string property)
|
|
{
|
|
return default(T);
|
|
}
|
|
|
|
public void PutSetting<T>(string property, T value)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|