mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-02 22:34:57 +00:00
24 lines
614 B
C#
24 lines
614 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
|
|
{
|
|
AudioCodecBase AudioCodec { get; }
|
|
BoolFeedback InCallFeedback { get; }
|
|
|
|
///// <summary>
|
|
///// Make this more specific
|
|
///// </summary>
|
|
//List<PepperDash.Essentials.Devices.Common.Codec.CodecActiveCallItem> ActiveCalls { get; }
|
|
}
|
|
} |