mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-08-31 19:08:29 +00:00
feat: add IAudioCodecInfoMessenger for messaging bridge implementation
This commit is contained in:
parent
c306fd717e
commit
22f5558e39
2 changed files with 86 additions and 0 deletions
|
|
@ -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; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue