From 49c4d2a387e32e8d9b8eb50ad071738b6e9e9f96 Mon Sep 17 00:00:00 2001 From: Andrew Welker Date: Thu, 11 Apr 2024 09:15:05 -0500 Subject: [PATCH] fix: use IRoutingSink instead of IRoutingSinkWithSwitching --- src/PepperDash.Essentials.Core/Room/Interfaces.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/PepperDash.Essentials.Core/Room/Interfaces.cs b/src/PepperDash.Essentials.Core/Room/Interfaces.cs index e4f93802..190abeec 100644 --- a/src/PepperDash.Essentials.Core/Room/Interfaces.cs +++ b/src/PepperDash.Essentials.Core/Room/Interfaces.cs @@ -22,7 +22,7 @@ namespace PepperDash.Essentials.Core /// public interface IHasDefaultDisplay { - IRoutingSinkWithSwitching DefaultDisplay { get; } + IRoutingSink DefaultDisplay { get; } } /// @@ -30,7 +30,7 @@ namespace PepperDash.Essentials.Core /// public interface IHasMultipleDisplays { - Dictionary Displays { get; } + Dictionary Displays { get; } } ///