From f2a5c342f6e0e2d5fbb1ff31f1992d526cda4931 Mon Sep 17 00:00:00 2001 From: InspectorIT Date: Fri, 27 Mar 2026 23:03:01 +0300 Subject: [PATCH] add new methods to IRecentFilesService.cs --- src/KeyKeeper/Services/IRecentFilesService.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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