mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-04 07:14:58 +00:00
17 lines
588 B
C#
17 lines
588 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
|
|
namespace PepperDash.Essentials.Devices.Displays
|
|
{
|
|
public interface IInputHdmi1 { void InputHdmi1(); }
|
|
public interface IInputHdmi2 { void InputHdmi2(); }
|
|
public interface IInputHdmi3 { void InputHdmi3(); }
|
|
public interface IInputHdmi4 { void InputHdmi4(); }
|
|
public interface IInputDisplayPort1 { void InputDisplayPort1(); }
|
|
public interface IInputDisplayPort2 { void InputDisplayPort2(); }
|
|
public interface IInputVga1 { void InputVga1(); }
|
|
|
|
} |