namespace AsterNET.Manager.Event
{
///
/// A HoldEvent is triggered by the SIP channel driver when a channel is put on hold.
/// It is implemented in channels/chan_sip.c
.
/// Available since Asterisk 1.2
///
///
public class HoldEvent : ManagerEvent
{
private string status;
public string Status
{
get { return this.status; }
set { this.status = value; }
}
public HoldEvent(ManagerConnection source)
: base(source)
{
}
}
}