chore: move all files to file-scoped namespace

This commit is contained in:
Andrew Welker 2025-07-04 16:02:32 -05:00 committed by Neil Dorin
parent aaa5b0532b
commit 3ece4f0b7b
522 changed files with 39628 additions and 45678 deletions

View file

@ -1,26 +1,25 @@
using PepperDash.Essentials.Core;
namespace PepperDash.Essentials.Devices.Common.VideoCodec
namespace PepperDash.Essentials.Devices.Common.VideoCodec;
/// <summary>
/// For rooms that have video codec
/// </summary>
public interface IHasVideoCodec : IHasInCallFeedback, IPrivacy
{
/// <summary>
/// For rooms that have video codec
/// Gets the VideoCodecBase instance
/// </summary>
public interface IHasVideoCodec : IHasInCallFeedback, IPrivacy
{
/// <summary>
/// Gets the VideoCodecBase instance
/// </summary>
VideoCodecBase VideoCodec { get; }
VideoCodecBase VideoCodec { get; }
/// <summary>
/// States: 0 for on hook, 1 for video, 2 for audio, 3 for telekenesis
/// </summary>
IntFeedback CallTypeFeedback { get; }
/// <summary>
/// States: 0 for on hook, 1 for video, 2 for audio, 3 for telekenesis
/// </summary>
IntFeedback CallTypeFeedback { get; }
/// <summary>
/// When something in the room is sharing with the far end or through other means
/// </summary>
BoolFeedback IsSharingFeedback { get; }
/// <summary>
/// When something in the room is sharing with the far end or through other means
/// </summary>
BoolFeedback IsSharingFeedback { get; }
}
}