Files
Hyperbar/Hyperbar.Windows.Primary/KeyAcceleratorCommandConfiguration.cs
T
2024-01-06 16:39:30 +00:00

11 lines
248 B
C#

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