diff --git a/src/KeyKeeper/Services/IRecentFilesService.cs b/src/KeyKeeper/Services/IRecentFilesService.cs index 8621da8..25894f0 100644 --- a/src/KeyKeeper/Services/IRecentFilesService.cs +++ b/src/KeyKeeper/Services/IRecentFilesService.cs @@ -7,10 +7,11 @@ public interface IRecentFilesService { // files are stored in reverse chronological order ObservableCollection RecentFiles { get; } - + + void Load(); + void Save(); + void Remember(string filename); void Forget(string filename); void ForgetAll(); - - // TODO load and store } \ No newline at end of file