kCura.EDDS.WebAPI.FieldManagerBase.KeyboardShortcut
namespace kCura.EDDS.WebAPI.FieldManagerBase
{
public class KeyboardShortcut
{
public int Id { get; set; }
public bool Shift { get; set; }
public bool Ctrl { get; set; }
public bool Alt { get; set; }
public int Key { get; set; }
public KeyboardShortcut();
}
}