Tab restore

This commit is contained in:
2022-05-24 17:02:36 +02:00
parent dcff003c28
commit 8167909781
16 changed files with 339 additions and 11 deletions

View File

@@ -2,4 +2,5 @@ namespace FileTime.App.Core.Services;
public interface IStartupHandler
{
Task InitAsync();
}

View File

@@ -0,0 +1,6 @@
namespace FileTime.App.Core.Services.Persistence;
public interface ITabPersistenceService : IStartupHandler, IExitHandler
{
void SaveStates();
}