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 MovementTimeInMs - time in milliseconds for the movement to complete
///
[JsonProperty("movementTimeInMs")]
public int MovementTimeInMs { get; set; }
}
}