10 lines
248 B
C#
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
|
|
{
|
|
}
|
|
} |