<PackageReference Include="Relativity.Server.Import.SDK" Version="2.9.2" />

KeyboardShortcut

public class KeyboardShortcut
using System; using System.CodeDom.Compiler; using System.ComponentModel; using System.Diagnostics; using System.Xml.Serialization; namespace kCura.EDDS.WebAPI.DocumentManagerBase { [Serializable] [GeneratedCode("System.Xml", "4.7.2612.0")] [DebuggerStepThrough] [DesignerCategory("code")] [XmlType(Namespace = "http://foley.com/EDDS/DocumentManager")] public class KeyboardShortcut { private int idField; private bool shiftField; private bool ctrlField; private bool altField; private int keyField; public int Id { get { return idField; } set { idField = value; } } public bool Shift { get { return shiftField; } set { shiftField = value; } } public bool Ctrl { get { return ctrlField; } set { ctrlField = value; } } public bool Alt { get { return altField; } set { altField = value; } } public int Key { get { return keyField; } set { keyField = value; } } } }