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