using System; using System.Collections.Generic; using System.Linq; using System.Text; using Crestron.SimplSharp; namespace PepperDash.Essentials.Core.Shades { public interface IShades { List Shades { get; } } /// /// Requirements for a device that implements basic shade control /// public interface iShadesRaiseLower { void Open(); void Stop(); void Close(); } }