namespace PepperDash.Essentials.Devices.Common.Codec
{
///
/// Defines the contract for IHasCallHold
///
public interface IHasCallHold
{
///
/// Put the specified call on hold
///
///
void HoldCall(CodecActiveCallItem activeCall);
///
/// Resume the specified call
///
///
void ResumeCall(CodecActiveCallItem activeCall);
}
}