mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-01 22:04:52 +00:00
28 lines
999 B
C#
28 lines
999 B
C#
using PepperDash.Essentials.Core;
|
|
using PepperDash.Essentials.Room.Config;
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.Room
|
|
{
|
|
/// <summary>
|
|
/// Defines the contract for IEssentialsHuddleSpaceRoom
|
|
/// </summary>
|
|
public interface IEssentialsHuddleSpaceRoom : IEssentialsRoom, IHasCurrentSourceInfoChange, IRunRouteAction, IHasDefaultDisplay, IHasCurrentVolumeControls, IRoomOccupancy,
|
|
IEmergency, IMicrophonePrivacy
|
|
{
|
|
/// <summary>
|
|
/// Gets whether to exclude this room from global functions
|
|
/// </summary>
|
|
bool ExcludeFromGlobalFunctions { get; }
|
|
|
|
/// <summary>
|
|
/// Runs the route action for the given routeKey and sourceListKey
|
|
/// </summary>
|
|
/// <param name="routeKey">The route key</param>
|
|
void RunRouteAction(string routeKey);
|
|
|
|
/// <summary>
|
|
/// Gets the PropertiesConfig
|
|
/// </summary>
|
|
EssentialsHuddleRoomPropertiesConfig PropertiesConfig { get; }
|
|
}
|
|
} |