wired up key commands

This commit is contained in:
TheXamlGuy
2024-01-06 16:39:30 +00:00
parent a77c356389
commit 71881ad877
31 changed files with 282 additions and 82 deletions
@@ -0,0 +1,11 @@
namespace Hyperbar.Windows.Primary;
public class KeyAcceleratorCommandConfiguration :
IPrimaryCommandConfiguration
{
public string? Icon { get; set; }
public string? Key { get; set; }
public string[]? Modifiers { get; set; }
}