mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-08-31 19:08:29 +00:00
feat(wip): removing base classes from Essentials.Core
This commit is contained in:
parent
f43559941b
commit
d2e1979d96
16 changed files with 937 additions and 11 deletions
22
src/PepperDash.Essentials.Devices.Common/Shades/ShadeBase.cs
Normal file
22
src/PepperDash.Essentials.Devices.Common/Shades/ShadeBase.cs
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
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
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue