Files
Hyperbar/Hyperbar.Windows.Primary/KeyAcceleratorCommand.cs
T
TheXamlGuy e1c7846e45 Codemaid
2024-01-06 14:34:25 +00:00

11 lines
222 B
C#

namespace Hyperbar.Windows.Primary;
public class KeyAcceleratorCommand :
IPrimaryCommand
{
public string? Icon { get; set; }
public string? Key { get; set; }
public string[]? Modifiers { get; set; }
}