mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-08 17:24:47 +00:00
23 lines
502 B
C#
23 lines
502 B
C#
using PepperDash.Essentials.Core.Shades;
|
|
using PepperDash.Essentials.Core;
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.Shades
|
|
{
|
|
public abstract class ShadeBase : EssentialsDevice, IShadesOpenCloseStop
|
|
{
|
|
public ShadeBase(string key, string name)
|
|
: base(key, name)
|
|
{
|
|
|
|
}
|
|
|
|
#region iShadesOpenClose Members
|
|
|
|
public abstract void Open();
|
|
public abstract void Stop();
|
|
public abstract void Close();
|
|
|
|
#endregion
|
|
}
|
|
}
|