mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-26 02:44:57 +00:00
12 lines
323 B
C#
12 lines
323 B
C#
using System;
|
|
|
|
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:Core.Bridges.IBridge
|
|
{
|
|
}
|
|
} |