11 lines
217 B
C#
11 lines
217 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Umbraco.Core.PropertyEditors
|
|
{
|
|
public class SliderPropertyEditorConfiguration
|
|
{
|
|
[JsonProperty("enableRange")]
|
|
public bool EnableRange { get; set; }
|
|
}
|
|
}
|