using System; using System.Collections.ObjectModel; using System.Threading.Tasks; using ModernKeePass.Interfaces; using Windows.Storage; namespace ModernKeePassApp.Test.Mock { class RecentServiceMock : IRecent { public int EntryCount => 0; public void Add(IStorageItem file, string metadata) { throw new NotImplementedException(); } public ObservableCollection GetAllFiles(bool removeIfNonExistant = true) { throw new NotImplementedException(); } public Task GetFileAsync(string token) { throw new NotImplementedException(); } } }