mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-14 12:15:01 +00:00
chore: fix namespaces for room interfaces to be consistent
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
using PepperDash.Essentials.Core;
|
using PepperDash.Essentials.Core;
|
||||||
using PepperDash.Essentials.Room.Config;
|
using PepperDash.Essentials.Room.Config;
|
||||||
|
|
||||||
namespace PepperDash.Essentials.Devices.Common.Rooms
|
namespace PepperDash.Essentials.Devices.Common.Room
|
||||||
{
|
{
|
||||||
public interface IEssentialsHuddleSpaceRoom : IEssentialsRoom, IHasCurrentSourceInfoChange, IRunRouteAction, IHasDefaultDisplay, IHasCurrentVolumeControls, IRoomOccupancy,
|
public interface IEssentialsHuddleSpaceRoom : IEssentialsRoom, IHasCurrentSourceInfoChange, IRunRouteAction, IHasDefaultDisplay, IHasCurrentVolumeControls, IRoomOccupancy,
|
||||||
IEmergency, IMicrophonePrivacy
|
IEmergency, IMicrophonePrivacy
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ using PepperDash.Essentials.Devices.Common.Codec;
|
|||||||
using PepperDash.Essentials.Devices.Common.VideoCodec;
|
using PepperDash.Essentials.Devices.Common.VideoCodec;
|
||||||
using PepperDash.Essentials.Room.Config;
|
using PepperDash.Essentials.Room.Config;
|
||||||
|
|
||||||
namespace PepperDash.Essentials.Devices.Common.Rooms
|
namespace PepperDash.Essentials.Devices.Common.Room
|
||||||
{
|
{
|
||||||
public interface IEssentialsHuddleVtc1Room : IEssentialsRoom, IHasCurrentSourceInfoChange, IHasCurrentVolumeControls, IRunRouteAction, IRunDefaultCallRoute, IHasVideoCodec, IHasAudioCodec, IHasDefaultDisplay, IHasInCallFeedback,
|
public interface IEssentialsHuddleVtc1Room : IEssentialsRoom, IHasCurrentSourceInfoChange, IHasCurrentVolumeControls, IRunRouteAction, IRunDefaultCallRoute, IHasVideoCodec, IHasAudioCodec, IHasDefaultDisplay, IHasInCallFeedback,
|
||||||
IRoomOccupancy, IEmergency, IMicrophonePrivacy
|
IRoomOccupancy, IEmergency, IMicrophonePrivacy
|
||||||
|
|||||||
@@ -1,16 +1,16 @@
|
|||||||
using PepperDash.Essentials.Core;
|
using PepperDash.Essentials.Core;
|
||||||
using PepperDash.Essentials.Core.Bridges;
|
using PepperDash.Essentials.Core.Bridges;
|
||||||
using PepperDash.Essentials.Core.DeviceTypeInterfaces;
|
using PepperDash.Essentials.Core.DeviceTypeInterfaces;
|
||||||
using System;
|
using PepperDash.Essentials.Room.Config;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using TwoWayDisplayBase = PepperDash.Essentials.Devices.Common.Displays.TwoWayDisplayBase;
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace PepperDash.Essentials.Devices.Common.Room
|
namespace PepperDash.Essentials.Devices.Common.Room
|
||||||
{
|
{
|
||||||
public interface IEssentialsTechRoom:IEssentialsRoom, ITvPresetsProvider,IBridgeAdvanced,IRunDirectRouteAction
|
public interface IEssentialsTechRoom:IEssentialsRoom, ITvPresetsProvider,IBridgeAdvanced,IRunDirectRouteAction
|
||||||
{
|
{
|
||||||
|
EssentialsTechRoomConfig PropertiesConfig { get; }
|
||||||
Dictionary<string, IRSetTopBoxBase> Tuners { get; }
|
Dictionary<string, IRSetTopBoxBase> Tuners { get; }
|
||||||
|
|
||||||
Dictionary<string, TwoWayDisplayBase> Displays { get; }
|
Dictionary<string, TwoWayDisplayBase> Displays { get; }
|
||||||
|
|||||||
Reference in New Issue
Block a user