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