mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-02 22:34:57 +00:00
15 lines
529 B
C#
15 lines
529 B
C#
using PepperDash.Essentials.Core;
|
|
using PepperDash.Essentials.Room.Config;
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.Room
|
|
{
|
|
public interface IEssentialsHuddleSpaceRoom : IEssentialsRoom, IHasCurrentSourceInfoChange, IRunRouteAction, IHasDefaultDisplay, IHasCurrentVolumeControls, IRoomOccupancy,
|
|
IEmergency, IMicrophonePrivacy
|
|
{
|
|
bool ExcludeFromGlobalFunctions { get; }
|
|
|
|
void RunRouteAction(string routeKey);
|
|
|
|
EssentialsHuddleRoomPropertiesConfig PropertiesConfig { get; }
|
|
}
|
|
} |