mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-10 02:05:08 +00:00
16 lines
424 B
C#
16 lines
424 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
using Crestron.SimplSharpPro.DeviceSupport;
|
|
|
|
namespace PepperDash.Essentials.Bridges
|
|
{
|
|
public interface IBridge
|
|
{
|
|
void LinkToApi(BasicTriList trilist, uint joinStart, string joinMapKey);
|
|
|
|
void LinkToApi(BasicTriList trilist, uint joinStart, string joinMapKey, EiscApi bridge);
|
|
}
|
|
} |