feat: rename IHasDestinationList to IHasDestinations for consistency

This commit is contained in:
Neil Dorin 2026-03-12 16:19:29 -06:00
parent 4810c2d590
commit 6e01173f3b
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@ namespace PepperDash.Essentials.Core
/// <summary> /// <summary>
/// Interface for rooms with a list of destinations /// Interface for rooms with a list of destinations
/// </summary> /// </summary>
public interface IHasDestinationList public interface IHasDestinations
{ {
/// <summary> /// <summary>
/// Gets the dictionary of destinations. /// Gets the dictionary of destinations.

View file

@ -255,7 +255,7 @@ namespace PepperDash.Essentials.Core.Routing
return; return;
} }
// Debug.LogMessage(Serilog.Events.LogEventLevel.Verbose, "Found room {room} for destination {destination}", this, room.Key, destination.Key); Debug.LogMessage(Serilog.Events.LogEventLevel.Verbose, "Found room {room} for destination {destination}", this, room.Key, destination.Key);
Dictionary<string, SourceListItem> sourceList = null; Dictionary<string, SourceListItem> sourceList = null;