mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-27 03:14:57 +00:00
17 lines
474 B
C#
17 lines
474 B
C#
using PepperDash.Essentials.Core;
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.AudioCodec
|
|
{
|
|
/// <summary>
|
|
/// For rooms that have audio codec
|
|
/// </summary>
|
|
public interface IHasAudioCodec : IHasInCallFeedback
|
|
{
|
|
/// <summary>
|
|
/// Gets the audio codec device
|
|
/// </summary>
|
|
AudioCodecBase AudioCodec { get; }
|
|
|
|
//List<PepperDash.Essentials.Devices.Common.Codec.CodecActiveCallItem> ActiveCalls { get; }
|
|
}
|
|
} |