From 4810c2d590b3ff011de1d1995323b485c581046d Mon Sep 17 00:00:00 2001 From: Neil Dorin Date: Thu, 12 Mar 2026 15:29:26 -0600 Subject: [PATCH] feat: restructure IHasDestinationList and IHasSourceList interfaces for clarity --- .../Room/IHasDestinationList.cs | 18 ++++++++++-------- .../Room/IHasSourceList.cs | 19 ++++++++++--------- 2 files changed, 20 insertions(+), 17 deletions(-) diff --git a/src/PepperDash.Essentials.Core/Room/IHasDestinationList.cs b/src/PepperDash.Essentials.Core/Room/IHasDestinationList.cs index a731e672..bab1b3d2 100644 --- a/src/PepperDash.Essentials.Core/Room/IHasDestinationList.cs +++ b/src/PepperDash.Essentials.Core/Room/IHasDestinationList.cs @@ -1,14 +1,16 @@ using System.Collections.Generic; -using PepperDash.Essentials.Core; - -/// -/// Interface for rooms with a list of destinations -/// -public interface IHasDestinationList +namespace PepperDash.Essentials.Core { + /// - /// Gets the dictionary of destinations. + /// Interface for rooms with a list of destinations /// - Dictionary Destinations { get; } + public interface IHasDestinationList + { + /// + /// Gets the dictionary of destinations. + /// + Dictionary Destinations { get; } + } } \ No newline at end of file diff --git a/src/PepperDash.Essentials.Core/Room/IHasSourceList.cs b/src/PepperDash.Essentials.Core/Room/IHasSourceList.cs index c3f0d70f..0e87f58a 100644 --- a/src/PepperDash.Essentials.Core/Room/IHasSourceList.cs +++ b/src/PepperDash.Essentials.Core/Room/IHasSourceList.cs @@ -1,14 +1,15 @@ using System.Collections.Generic; -using PepperDash.Essentials.Core; - - -/// -/// Interface for rooms with a list of destinations -/// -public interface IHasSourceList +namespace PepperDash.Essentials.Core { + /// - /// Gets the list of sources. + /// Interface for rooms with a list of destinations /// - Dictionary SourceList { get; } + public interface IHasSourceList + { + /// + /// Gets the list of sources. + /// + Dictionary SourceList { get; } + } } \ No newline at end of file