mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-29 20:34:51 +00:00
26 lines
668 B
C#
26 lines
668 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// Sets the sensor sensitivity
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// The sensitivity range shall be between 1(lowest) to 10 (highest).
|
|
/// </remarks>
|
|
[JsonProperty("sensitivity")]
|
|
public ushort? Sensitivity { get; set; }
|
|
|
|
[JsonProperty("enable")]
|
|
public bool? Enable { get; set; }
|
|
}
|
|
} |