mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-10 10:15:01 +00:00
16 lines
444 B
C#
16 lines
444 B
C#
using System;
|
|
using Crestron.SimplSharpPro.DeviceSupport;
|
|
using PepperDash.Essentials.Core.Bridges;
|
|
|
|
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 : PepperDash.Essentials.Core.Bridges.IBridge
|
|
{
|
|
|
|
}
|
|
|
|
} |