mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-29 20:34:51 +00:00
Mobile Control (for the moment) relies on these classes, so they are necessary in Essentials until we determine a better solution.
15 lines
530 B
C#
15 lines
530 B
C#
using PepperDash.Essentials.Core;
|
|
using PepperDash.Essentials.Room.Config;
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.Rooms
|
|
{
|
|
public interface IEssentialsHuddleSpaceRoom : IEssentialsRoom, IHasCurrentSourceInfoChange, IRunRouteAction, IHasDefaultDisplay, IHasCurrentVolumeControls, IRoomOccupancy,
|
|
IEmergency, IMicrophonePrivacy
|
|
{
|
|
bool ExcludeFromGlobalFunctions { get; }
|
|
|
|
void RunRouteAction(string routeKey);
|
|
|
|
EssentialsHuddleRoomPropertiesConfig PropertiesConfig { get; }
|
|
}
|
|
} |