mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-14 04:04:58 +00:00
22 lines
504 B
C#
22 lines
504 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; }
|
|
}
|
|
} |