feat: restructure IHasDestinationList and IHasSourceList interfaces for clarity

This commit is contained in:
Neil Dorin 2026-03-12 15:29:26 -06:00
parent 7cc1d3fa6a
commit 4810c2d590
2 changed files with 20 additions and 17 deletions

View file

@ -1,6 +1,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using PepperDash.Essentials.Core;
namespace PepperDash.Essentials.Core
{
/// <summary> /// <summary>
/// Interface for rooms with a list of destinations /// Interface for rooms with a list of destinations
@ -12,3 +13,4 @@ public interface IHasDestinationList
/// </summary> /// </summary>
Dictionary<string, IRoutingSink> Destinations { get; } Dictionary<string, IRoutingSink> Destinations { get; }
} }
}

View file

@ -1,6 +1,6 @@
using System.Collections.Generic; using System.Collections.Generic;
using PepperDash.Essentials.Core; namespace PepperDash.Essentials.Core
{
/// <summary> /// <summary>
/// Interface for rooms with a list of destinations /// Interface for rooms with a list of destinations
@ -12,3 +12,4 @@ public interface IHasSourceList
/// </summary> /// </summary>
Dictionary<string, SourceListItem> SourceList { get; } Dictionary<string, SourceListItem> SourceList { get; }
} }
}