11 lines
248 B
C#
11 lines
248 B
C#
namespace Hyperbar.Windows.Primary;
|
|
|
|
public class KeyAcceleratorCommandConfiguration :
|
|
IPrimaryCommandConfiguration
|
|
{
|
|
public string? Icon { get; set; }
|
|
|
|
public string? Key { get; set; }
|
|
|
|
public string[]? Modifiers { get; set; }
|
|
} |