36 lines
792 B
C#
36 lines
792 B
C#
#region Using Directives
|
|
|
|
using System;
|
|
|
|
#endregion Using Directives
|
|
|
|
|
|
namespace ScintillaNET.Configuration
|
|
{
|
|
public struct CommandBindingConfig
|
|
{
|
|
#region Fields
|
|
|
|
public KeyBinding KeyBinding;
|
|
public bool? ReplaceCurrent;
|
|
public BindableCommand BindableCommand;
|
|
|
|
#endregion Fields
|
|
|
|
|
|
#region Constructors
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the CommandBindingConfig structure.
|
|
/// </summary>
|
|
public CommandBindingConfig(KeyBinding keyBinding, bool? replaceCurrent, BindableCommand bindableCommand)
|
|
{
|
|
KeyBinding = keyBinding;
|
|
ReplaceCurrent = replaceCurrent;
|
|
BindableCommand = bindableCommand;
|
|
}
|
|
|
|
#endregion Constructors
|
|
}
|
|
}
|