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
15 lines
435 B
C#
15 lines
435 B
C#
using System.Collections.ObjectModel;
|
|
using System.Threading.Tasks;
|
|
using Windows.Storage;
|
|
|
|
namespace ModernKeePass.Interfaces
|
|
{
|
|
public interface IRecentService
|
|
{
|
|
int EntryCount { get; }
|
|
Task<IStorageItem> GetFileAsync(string token);
|
|
ObservableCollection<IRecentItem> GetAllFiles(bool removeIfNonExistant = true);
|
|
void Add(IStorageItem file, string metadata);
|
|
void ClearAll();
|
|
}
|
|
} |