Files
Umbraco-CMS/src/Umbraco.Core/PropertyEditors/DropDownFlexibleConfiguration.cs
2018-11-15 08:43:54 +01:00

8 lines
350 B
C#

namespace Umbraco.Core.PropertyEditors
{
internal class DropDownFlexibleConfiguration : ValueListConfiguration
{
[ConfigurationField("multiple", "Enable multiple choice", "boolean", Description = "When checked, the dropdown will be a select multiple / combo box style dropdown.")]
public bool Multiple { get; set; }
}
}