14 lines
426 B
C#
14 lines
426 B
C#
using FileTime.App.Core.ViewModels;
|
|
using FileTime.GuiApp.Configuration;
|
|
|
|
namespace FileTime.GuiApp.ViewModels
|
|
{
|
|
public interface IGuiAppState : IAppState
|
|
{
|
|
List<KeyConfig> PreviousKeys { get; }
|
|
bool IsAllShortcutVisible { get; set; }
|
|
bool NoCommandFound { get; set; }
|
|
string? MessageBoxText { get; set; }
|
|
List<CommandBindingConfiguration> PossibleCommands { get; set; }
|
|
}
|
|
} |