mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-10 18:24:50 +00:00
23 lines
490 B
C#
23 lines
490 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
|
|
namespace PepperDash.Essentials.Core.Shades
|
|
{
|
|
public interface IShades
|
|
{
|
|
List<ShadeBase> Shades { get; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Requirements for a device that implements basic shade control
|
|
/// </summary>
|
|
public interface iShadesRaiseLower
|
|
{
|
|
void Open();
|
|
void Stop();
|
|
void Close();
|
|
}
|
|
} |