mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-02 14:24:59 +00:00
17 lines
379 B
C#
17 lines
379 B
C#
namespace PepperDash.Essentials.Devices.Common.Shades
|
|
{
|
|
/// <summary>
|
|
/// Enumeration of eScreenLiftControlMode values
|
|
/// </summary>
|
|
public enum eScreenLiftControlMode
|
|
{
|
|
/// <summary>
|
|
/// Momentary control mode for screen lift
|
|
/// </summary>
|
|
momentary,
|
|
/// <summary>
|
|
/// Latched control mode for screen lift
|
|
/// </summary>
|
|
latched
|
|
}
|
|
} |