From 851c1c8eac90f7ac20b54766493f0f850fd7e7ff Mon Sep 17 00:00:00 2001 From: "agrath@gmail.com" Date: Mon, 11 Jun 2012 11:05:29 -0100 Subject: [PATCH] Add enumeration for deep linking types --- umbraco/cms/helpers/DeepLinkType.cs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 umbraco/cms/helpers/DeepLinkType.cs 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 + } +}