mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-20 07:56:50 +00:00
chore: move all files to file-scoped namespace
This commit is contained in:
parent
aaa5b0532b
commit
3ece4f0b7b
522 changed files with 39628 additions and 45678 deletions
|
|
@ -1,51 +1,53 @@
|
|||
using PepperDash.Essentials.Core;
|
||||
using System;
|
||||
using PepperDash.Essentials.Core;
|
||||
using PepperDash.Essentials.Devices.Common.AudioCodec;
|
||||
using PepperDash.Essentials.Devices.Common.Codec;
|
||||
using PepperDash.Essentials.Devices.Common.VideoCodec;
|
||||
using PepperDash.Essentials.Room.Config;
|
||||
|
||||
namespace PepperDash.Essentials.Devices.Common.Room
|
||||
namespace PepperDash.Essentials.Devices.Common.Room;
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Defines the contract for IEssentialsHuddleVtc1Room
|
||||
/// </summary>
|
||||
[Obsolete("Obsolete in favor of IEssentialsRoom. This interface will be removed in a future release.")]
|
||||
public interface IEssentialsHuddleVtc1Room : IEssentialsRoom, IHasCurrentSourceInfoChange, IHasCurrentVolumeControls, IRunRouteAction, IRunDefaultCallRoute, IHasVideoCodec, IHasAudioCodec, IHasDefaultDisplay, IHasInCallFeedback,
|
||||
IRoomOccupancy, IEmergency, IMicrophonePrivacy
|
||||
{
|
||||
/// <summary>
|
||||
/// Defines the contract for IEssentialsHuddleVtc1Room
|
||||
/// Gets the PropertiesConfig
|
||||
/// </summary>
|
||||
public interface IEssentialsHuddleVtc1Room : IEssentialsRoom, IHasCurrentSourceInfoChange, IHasCurrentVolumeControls, IRunRouteAction, IRunDefaultCallRoute, IHasVideoCodec, IHasAudioCodec, IHasDefaultDisplay, IHasInCallFeedback,
|
||||
IRoomOccupancy, IEmergency, IMicrophonePrivacy
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets the PropertiesConfig
|
||||
/// </summary>
|
||||
EssentialsHuddleVtc1PropertiesConfig PropertiesConfig { get; }
|
||||
EssentialsHuddleVtc1PropertiesConfig PropertiesConfig { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets whether to exclude this room from global functions
|
||||
/// </summary>
|
||||
bool ExcludeFromGlobalFunctions { get; }
|
||||
/// <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>
|
||||
/// 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 ScheduleSource
|
||||
/// </summary>
|
||||
IHasScheduleAwareness ScheduleSource { get; }
|
||||
/// <summary>
|
||||
/// Gets the ScheduleSource
|
||||
/// </summary>
|
||||
IHasScheduleAwareness ScheduleSource { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the InCallFeedback
|
||||
/// </summary>
|
||||
new BoolFeedback InCallFeedback { get; }
|
||||
/// <summary>
|
||||
/// Gets the InCallFeedback
|
||||
/// </summary>
|
||||
new BoolFeedback InCallFeedback { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the PrivacyModeIsOnFeedback
|
||||
/// </summary>
|
||||
new BoolFeedback PrivacyModeIsOnFeedback { get; }
|
||||
/// <summary>
|
||||
/// Gets the PrivacyModeIsOnFeedback
|
||||
/// </summary>
|
||||
new BoolFeedback PrivacyModeIsOnFeedback { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the DefaultCodecRouteString
|
||||
/// </summary>
|
||||
string DefaultCodecRouteString { get; }
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// Gets the DefaultCodecRouteString
|
||||
/// </summary>
|
||||
string DefaultCodecRouteString { get; }
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue