From 1bd11ea2b6bd18a4010052e94114b8feba7a6671 Mon Sep 17 00:00:00 2001 From: Aviv Cohn Date: Wed, 15 Oct 2025 20:34:24 -0400 Subject: [PATCH] fix: update Displays property type in IHasMultipleDisplays interface to use string for key --- src/PepperDash.Essentials.Core/Room/Interfaces.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PepperDash.Essentials.Core/Room/Interfaces.cs b/src/PepperDash.Essentials.Core/Room/Interfaces.cs index bffb80a3..438650bb 100644 --- a/src/PepperDash.Essentials.Core/Room/Interfaces.cs +++ b/src/PepperDash.Essentials.Core/Room/Interfaces.cs @@ -28,7 +28,7 @@ namespace PepperDash.Essentials.Core [Obsolete("Will be removed in a future version")] public interface IHasMultipleDisplays { - Dictionary Displays { get; } + Dictionary Displays { get; } } ///