using Newtonsoft.Json; namespace PepperDash.Essentials.Devices.Common.Shades { /// /// Represents a ScreenLiftRelaysConfig /// public class ScreenLiftRelaysConfig { /// /// Gets or sets the DeviceKey /// [JsonProperty("deviceKey")] public string DeviceKey { get; set; } /// /// Gets or sets the PulseTimeInMs /// [JsonProperty("pulseTimeInMs")] public int PulseTimeInMs { get; set; } /// /// Gets or sets the MoveTimeInMs - time in milliseconds for the movement to complete /// [JsonProperty("moveTimeInMs")] public int MoveTimeInMs { get; set; } } }