extern alias Full; using System; using System.Collections.Generic; using System.Linq; using System.Text; using Crestron.SimplSharp; using Full.Newtonsoft.Json; namespace PepperDash_Essentials_Core.PartitionSensor { public class GlsPartitionSensorPropertiesConfig { /// /// Sets the sensor sensitivity /// /// /// The sensitivity range shall be between 1(lowest) to 10 (highest). /// [JsonProperty("sensitivity")] public ushort? Sensitivity { get; set; } [JsonProperty("enable")] public bool? Enable { get; set; } } }