10 lines
218 B
C#
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; }
|
|
}
|