Files
Hyperbar/Hyperbar.Windows.Primary/KeyAcceleratorCommandConfiguration.cs
T
2024-01-11 19:52:48 +00:00

10 lines
211 B
C#

namespace Hyperbar.Windows.Primary;
public class KeyAcceleratorCommandConfiguration :
PrimaryCommandConfiguration
{
public required int Key { get; set; }
public int[]? Modifiers { get; set; }
}