Files
Hyperbar/Hyperbar.Windows.Primary/PrimaryWidgetConfiguration.cs
T
2024-01-17 19:28:21 +00:00

10 lines
339 B
C#

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