Files
Hyperbar/Hyperbar.Windows.Primary/PrimaryWidgetConfiguration.cs
T
2024-01-07 13:18:38 +00:00

10 lines
317 B
C#

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