10 lines
292 B
C#
10 lines
292 B
C#
using Umbraco.Core.PropertyEditors;
|
|
|
|
namespace Umbraco.Web.PropertyEditors
|
|
{
|
|
/// <summary>
|
|
/// Represents the configuration editor for the boolean value editor.
|
|
/// </summary>
|
|
public class TrueFalseConfigurationEditor : ConfigurationEditor<TrueFalseConfiguration>
|
|
{ }
|
|
} |