feat: add IAudioCodecInfoMessenger for messaging bridge implementation

This commit is contained in:
Neil Dorin 2026-06-11 16:44:41 -06:00
parent c306fd717e
commit 22f5558e39
2 changed files with 86 additions and 0 deletions

View file

@ -0,0 +1,15 @@
using System.Collections.Generic;
using PepperDash.Essentials.Devices.Common.Codec;
namespace PepperDash.Essentials.Devices.Common.AudioCodec;
public interface IAudioCodecPhonebook : IHasDialer
{
/// <summary>
/// Gets the list of phonebook entries for the device.
/// </summary>
List<CodecPhonebookEntry> PhonebookEntries { get; }
}