mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-11 19:44:52 +00:00
28 lines
709 B
C#
28 lines
709 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.Shades
|
|
{
|
|
/// <summary>
|
|
/// Represents a ScreenLiftRelaysConfig
|
|
/// </summary>
|
|
public class ScreenLiftRelaysConfig
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the DeviceKey
|
|
/// </summary>
|
|
[JsonProperty("deviceKey")]
|
|
public string DeviceKey { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the PulseTimeInMs
|
|
/// </summary>
|
|
[JsonProperty("pulseTimeInMs")]
|
|
public int PulseTimeInMs { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the MoveTimeInMs - time in milliseconds for the movement to complete
|
|
/// </summary>
|
|
[JsonProperty("moveTimeInMs")]
|
|
public int MoveTimeInMs { get; set; }
|
|
}
|
|
} |