using System; using ModernKeePass.Interfaces; namespace ModernKeePassApp.Test.Mock { public class SettingsServiceMock : ISettings { public T GetSetting(string property) { return default(T); } public void PutSetting(string property, T value) { throw new NotImplementedException(); } } }