mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-23 17:34:47 +00:00
14 lines
427 B
C#
14 lines
427 B
C#
using System;
|
|
using Crestron.SimplSharpPro.DeviceSupport;
|
|
|
|
namespace PepperDash.Essentials.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);
|
|
}
|
|
} |