13 lines
225 B
C#
13 lines
225 B
C#
namespace Hyperbar.Windows.Primary;
|
|
|
|
public class KeyAcceleratorCommand :
|
|
IPrimaryCommand
|
|
{
|
|
public string? Icon { get; set; }
|
|
|
|
public string? Key { get; set; }
|
|
|
|
public string[]? Modifiers { get; set; }
|
|
}
|
|
|