diff --git a/umbraco/cms/helpers/DeepLinkType.cs b/umbraco/cms/helpers/DeepLinkType.cs new file mode 100644 index 0000000000..b686627fda --- /dev/null +++ b/umbraco/cms/helpers/DeepLinkType.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace umbraco.cms.helpers +{ + public enum DeepLinkType + { + Template, + DocumentType, + Content, + Media, + MediaType, + XSLT, + RazorScript, + Css, + Javascript, + Macro, + DataType + } +}