mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-23 17:34:47 +00:00
18 lines
549 B
C#
18 lines
549 B
C#
using Crestron.SimplSharpPro.DeviceSupport;
|
|
using PepperDash.Essentials.Core.Bridges;
|
|
|
|
namespace PepperDash.Essentials.Core
|
|
{
|
|
public abstract class EssentialsBridgeableDevice:EssentialsDevice, IBridgeAdvanced
|
|
{
|
|
protected EssentialsBridgeableDevice(string key) : base(key)
|
|
{
|
|
}
|
|
|
|
protected EssentialsBridgeableDevice(string key, string name) : base(key, name)
|
|
{
|
|
}
|
|
|
|
public abstract void LinkToApi(BasicTriList trilist, uint joinStart, string joinMapKey, EiscApiAdvanced bridge);
|
|
}
|
|
} |