mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 03:57:27 +00:00
16 lines
No EOL
376 B
C#
16 lines
No EOL
376 B
C#
using System.Collections.Generic;
|
|
|
|
namespace PepperDash.Essentials.Core
|
|
{
|
|
|
|
/// <summary>
|
|
/// Interface for rooms with a list of destinations
|
|
/// </summary>
|
|
public interface IHasDestinations
|
|
{
|
|
/// <summary>
|
|
/// Gets the dictionary of destinations.
|
|
/// </summary>
|
|
Dictionary<string, IRoutingSink> Destinations { get; }
|
|
}
|
|
} |