Files
Umbraco-CMS/src/Umbraco.Web/PropertyEditors/FolderBrowserPropertyEditor.cs
Per Ploug Krogslund 7440855c72 merge
2013-11-07 17:16:22 +01:00

15 lines
369 B
C#

using System.ComponentModel;
using System.Web.Mvc;
using Umbraco.Core;
using Umbraco.Core.PropertyEditors;
namespace Umbraco.Web.PropertyEditors
{
[PropertyEditor(Constants.PropertyEditors.FolderBrowserAlias, "Folder Browser", "folderbrowser", HideLabel=true)]
public class FolderBrowserPropertyEditor : PropertyEditor
{
}
}