DataType refactoring - in progress
This commit is contained in:
13
src/Umbraco.Web/PropertyEditors/TrueFalseConfiguration.cs
Normal file
13
src/Umbraco.Web/PropertyEditors/TrueFalseConfiguration.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using Umbraco.Core.PropertyEditors;
|
||||
|
||||
namespace Umbraco.Web.PropertyEditors
|
||||
{
|
||||
/// <summary>
|
||||
/// Represents the configuration for the boolean value editor.
|
||||
/// </summary>
|
||||
public class TrueFalseConfiguration
|
||||
{
|
||||
[ConfigurationField("default", "Default Value", "boolean")]
|
||||
public string Default { get; set; } // fixme - well, true or false?!
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user