feat: change interface visibility to public for IHasDestinationList and IHasSourceList

This commit is contained in:
Neil Dorin 2026-03-12 15:25:31 -06:00
parent af913b9498
commit 7cc1d3fa6a
2 changed files with 2 additions and 2 deletions

View file

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

View file

@ -5,7 +5,7 @@ using PepperDash.Essentials.Core;
/// <summary> /// <summary>
/// Interface for rooms with a list of destinations /// Interface for rooms with a list of destinations
/// </summary> /// </summary>
interface IHasSourceList public interface IHasSourceList
{ {
/// <summary> /// <summary>
/// Gets the list of sources. /// Gets the list of sources.