mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-25 18:34:44 +00:00
19 lines
583 B
C#
19 lines
583 B
C#
using Crestron.SimplSharpPro.DeviceSupport;
|
|
using PepperDash.Essentials.Core;
|
|
using PepperDash.Essentials.Core.Bridges;
|
|
|
|
namespace PepperDash_Essentials_Core.Devices
|
|
{
|
|
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, EiscApi bridge);
|
|
}
|
|
} |