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