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; }
}
///