mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-25 18:34:44 +00:00
22 lines
688 B
C#
22 lines
688 B
C#
using System;
|
|
using Crestron.SimplSharpPro.DeviceSupport;
|
|
|
|
namespace PepperDash.Essentials.Core.Bridges
|
|
{
|
|
/// <summary>
|
|
/// Defines a device that uses the legacy JoinMapBase for its join map
|
|
/// </summary>
|
|
[Obsolete("IBridgeAdvanced should be used going forward with JoinMapBaseAdvanced")]
|
|
public interface IBridge
|
|
{
|
|
void LinkToApi(BasicTriList trilist, uint joinStart, string joinMapKey);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Defines a device that uses JoinMapBaseAdvanced for its join map
|
|
/// </summary>
|
|
public interface IBridgeAdvanced
|
|
{
|
|
void LinkToApi(BasicTriList trilist, uint joinStart, string joinMapKey, EiscApi bridge);
|
|
}
|
|
} |