using FileTime.App.Core.ViewModels; using FileTime.GuiApp.Configuration; namespace FileTime.GuiApp.ViewModels { public interface IGuiAppState : IAppState { List PreviousKeys { get; } bool IsAllShortcutVisible { get; set; } bool NoCommandFound { get; set; } string? MessageBoxText { get; set; } List PossibleCommands { get; set; } } }