Files
Umbraco-CMS/src/Umbraco.Core/PropertyEditors/SliderPropertyEditorConfiguration.cs
2018-01-20 12:31:42 +01:00

11 lines
217 B
C#

using Newtonsoft.Json;
namespace Umbraco.Core.PropertyEditors
{
public class SliderPropertyEditorConfiguration
{
[JsonProperty("enableRange")]
public bool EnableRange { get; set; }
}
}