mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-28 11:54:57 +00:00
23 lines
582 B
C#
23 lines
582 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; }
|
|
}
|
|
} |