kCura.EDDS.WebAPI.CodeManagerBase.Code
namespace kCura.EDDS.WebAPI.CodeManagerBase
{
public class Code : Artifact
{
public int CodeType { get; set; }
public string Name { get; set; }
public int Order { get; set; }
public bool IsActive { get; set; }
public bool UpdateInSearchEngine { get; set; }
public int? OIHiliteStyleID { get; set; }
public KeyboardShortcut KeyboardShortcut { get; set; }
public int[] RelativityApplications { get; set; }
public Code();
}
}