mirror of
https://github.com/KeyKeeperApp/KeyKeeper.git
synced 2026-05-03 05:16:29 +03:00
add new methods to IRecentFilesService.cs
This commit is contained in:
@@ -7,10 +7,11 @@ public interface IRecentFilesService
|
|||||||
{
|
{
|
||||||
// files are stored in reverse chronological order
|
// files are stored in reverse chronological order
|
||||||
ObservableCollection<RecentFile> RecentFiles { get; }
|
ObservableCollection<RecentFile> RecentFiles { get; }
|
||||||
|
|
||||||
|
void Load();
|
||||||
|
void Save();
|
||||||
|
|
||||||
void Remember(string filename);
|
void Remember(string filename);
|
||||||
void Forget(string filename);
|
void Forget(string filename);
|
||||||
void ForgetAll();
|
void ForgetAll();
|
||||||
|
|
||||||
// TODO load and store
|
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user