using System.Collections.Generic; namespace PepperDash.Essentials.Core { /// /// Interface for rooms with a list of destinations /// public interface IHasDestinations { /// /// Gets the dictionary of destinations. /// Dictionary Destinations { get; } } }