mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 15:40:18 -04:00
14 lines
403 B
C#
14 lines
403 B
C#
using System.Collections.ObjectModel;
|
|
using System.Threading.Tasks;
|
|
using Windows.Storage;
|
|
|
|
namespace ModernKeePass.Interfaces
|
|
{
|
|
public interface IRecent
|
|
{
|
|
int EntryCount { get; }
|
|
Task<IStorageItem> GetFileAsync(string token);
|
|
ObservableCollection<IRecentItem> GetAllFiles(bool removeIfNonExistant = true);
|
|
void Add(IStorageItem file, string metadata);
|
|
}
|
|
} |