Files
Hyperbar/Hyperbar.Widget.Primary.Windows/KeyAcceleratorCommandConfiguration.cs
T
2024-01-27 10:55:53 +00:00

10 lines
218 B
C#

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