using System; namespace PepperDash.Essentials.Devices.Displays { /// /// Defines the contract for IInputHdmi1 /// [Obsolete()] public interface IInputHdmi1 { /// /// Switches to HDMI 1 input /// void InputHdmi1(); } /// /// Defines the contract for IInputHdmi2 /// [Obsolete()] public interface IInputHdmi2 { /// /// Switches to HDMI 2 input /// void InputHdmi2(); } /// /// Defines the contract for IInputHdmi3 /// [Obsolete()] public interface IInputHdmi3 { /// /// Switches to HDMI 3 input /// void InputHdmi3(); } /// /// Defines the contract for IInputHdmi4 /// [Obsolete()] public interface IInputHdmi4 { /// /// Switches to HDMI 4 input /// void InputHdmi4(); } /// /// Defines the contract for IInputDisplayPort1 /// [Obsolete()] public interface IInputDisplayPort1 { /// /// Switches to DisplayPort 1 input /// void InputDisplayPort1(); } /// /// Defines the contract for IInputDisplayPort2 /// [Obsolete()] public interface IInputDisplayPort2 { /// /// Switches to DisplayPort 2 input /// void InputDisplayPort2(); } /// /// Defines the contract for IInputVga1 /// [Obsolete()] public interface IInputVga1 { /// /// Switches to VGA 1 input /// void InputVga1(); } }