Added remaining methods for EssentialsDualDisplayRoom. Added IHasInCallFeedback interface to be applied to rooms with conferencing

This commit is contained in:
Neil Dorin
2019-10-25 16:08:55 -06:00
parent 59b2e9a8d6
commit c22e95cad2
4 changed files with 658 additions and 78 deletions

View File

@@ -6,6 +6,17 @@ using Crestron.SimplSharp;
namespace PepperDash.Essentials.Core
{
/// <summary>
/// For rooms with in call feedback
/// </summary>
public interface IHasInCallFeedback
{
BoolFeedback InCallFeedback { get; }
}
/// <summary>
/// For rooms with a single display
/// </summary>
public interface IHasDefaultDisplay
{
IRoutingSinkWithSwitching DefaultDisplay { get; }