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 { /// /// For rooms that have audio codec /// public interface IHasAudioCodec:IHasInCallFeedback { AudioCodecBase AudioCodec { get; } /// /// Make this more specific /// //List ActiveCalls { get; } } }