namespace AsterNET.Manager.Event
{
	/// <summary>
	/// A HoldEvent is triggered by the SIP channel driver when a channel is put on hold.<br/>
	/// It is implemented in <code>channels/chan_sip.c</code>.<br/>
	/// Available since Asterisk 1.2
	/// </summary>
	/// <seealso cref="Manager.event.UnholdEvent" />
	public class HoldEvent : ManagerEvent
	{
		private string status;

		public string Status
		{
			get { return this.status; }
			set { this.status = value; }
		}

		public HoldEvent(ManagerConnection source)
			: base(source)
		{
		}
	}
}