Files
Umbraco-CMS/src/Umbraco.Web/PropertyEditors/LabelPropertyEditor.cs

10 lines
248 B
C#

using Umbraco.Core;
using Umbraco.Core.PropertyEditors;
namespace Umbraco.Web.PropertyEditors
{
[PropertyEditor(Constants.PropertyEditors.NoEdit, "Label", "readonlyvalue")]
public class LabelPropertyEditor : PropertyEditor
{
}
}