10 lines
317 B
C#
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"] }
|
|
};
|
|
} |