DataType refactoring - in progress

This commit is contained in:
Stephan
2018-01-24 11:44:44 +01:00
parent 97a058b817
commit c3e6886ac0
238 changed files with 4090 additions and 4439 deletions

View 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?!
}
}