mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-27 11:24:55 +00:00
20 lines
564 B
C#
20 lines
564 B
C#
namespace PepperDash.Essentials.Devices.Common.Codec
|
|
{
|
|
/// <summary>
|
|
/// Defines the contract for IHasCallHold
|
|
/// </summary>
|
|
public interface IHasCallHold
|
|
{
|
|
/// <summary>
|
|
/// Put the specified call on hold
|
|
/// </summary>
|
|
/// <param name="activeCall"></param>
|
|
void HoldCall(CodecActiveCallItem activeCall);
|
|
|
|
/// <summary>
|
|
/// Resume the specified call
|
|
/// </summary>
|
|
/// <param name="activeCall"></param>
|
|
void ResumeCall(CodecActiveCallItem activeCall);
|
|
}
|
|
} |