mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-30 04:44:49 +00:00
23 lines
588 B
C#
23 lines
588 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
|
|
using PepperDash.Essentials.Core;
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.AudioCodec
|
|
{
|
|
/// <summary>
|
|
/// For rooms that have audio codec
|
|
/// </summary>
|
|
public interface IHasAudioCodec:IHasInCallFeedback
|
|
{
|
|
AudioCodecBase AudioCodec { get; }
|
|
|
|
///// <summary>
|
|
///// Make this more specific
|
|
///// </summary>
|
|
//List<PepperDash.Essentials.Devices.Common.Codec.CodecActiveCallItem> ActiveCalls { get; }
|
|
}
|
|
} |