mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-13 04:26:49 +00:00
feat: add IHasDestinationList and IHasSourceList interfaces for room management
This commit is contained in:
parent
5a07e837ee
commit
af913b9498
3 changed files with 47 additions and 1 deletions
14
src/PepperDash.Essentials.Core/Room/IHasDestinationList.cs
Normal file
14
src/PepperDash.Essentials.Core/Room/IHasDestinationList.cs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
using System.Collections.Generic;
|
||||
using PepperDash.Essentials.Core;
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Interface for rooms with a list of destinations
|
||||
/// </summary>
|
||||
interface IHasDestinationList
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets the dictionary of destinations.
|
||||
/// </summary>
|
||||
Dictionary<string, IRoutingSink> Destinations { get; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue