using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Crestron.SimplSharp;
namespace PepperDash.Essentials.Devices.Common.Codec
{
public interface IHasCallHold
{
///
/// Put the specified call on hold
///
///
void HoldCall(CodecActiveCallItem activeCall);
///
/// Resume the specified call
///
///
void ResumeCall(CodecActiveCallItem activeCall);
}
}