Files
Hyperbar/Hyperbar.Windows.Primary/PrimaryWidgetConfiguration.cs
T
2024-01-06 21:33:53 +00:00

10 lines
315 B
C#

namespace Hyperbar.Windows.Primary;
public class PrimaryWidgetConfiguration :
List<KeyAcceleratorCommandConfiguration>
{
public static PrimaryWidgetConfiguration Defaults => new()
{
new KeyAcceleratorCommandConfiguration { Icon = "Test", Key = "Test", Modifiers = ["Test", "Test"] }
};
}