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