mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-04 16:10:16 -04:00

First-time open of app correctly shows Welcome page New Home button in group and entry pages
15 lines
428 B
C#
15 lines
428 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);
|
|
void ClearAll();
|
|
}
|
|
} |