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

10 lines
268 B
C#

using Umbraco.Core;
using Umbraco.Core.PropertyEditors;
namespace Umbraco.Web.PropertyEditors
{
[PropertyEditor(Constants.PropertyEditors.TrueFalseAlias, "True/False", "boolean")]
public class TrueFalsePropertyEditor : PropertyEditor
{
}
}