2014-01-08 14:16:39 +00:00
|
|
|
namespace AsterNET.Manager.Event
|
2013-01-18 15:55:50 +00:00
|
|
|
{
|
2015-01-03 15:37:29 +00:00
|
|
|
/// <summary>
|
|
|
|
/// A HoldedCallEvent is triggered when a channel is put on hold.<br />
|
|
|
|
/// It is implemented in <code>res/res_features.c</code>
|
|
|
|
/// </summary>
|
|
|
|
public class HoldedCallEvent : ManagerEvent
|
|
|
|
{
|
|
|
|
public HoldedCallEvent(ManagerConnection source)
|
|
|
|
: base(source)
|
|
|
|
{
|
|
|
|
}
|
2013-01-18 15:55:50 +00:00
|
|
|
|
2015-01-03 15:37:29 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Get/Set the unique id of the channel that put the other channel on hold.
|
|
|
|
/// </summary>
|
|
|
|
public string UniqueId1 { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Get/Set the unique id of the channel that has been put on hold.
|
|
|
|
/// </summary>
|
|
|
|
public string UniqueId2 { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Get/Set the name of the channel that put the other channel on hold.
|
|
|
|
/// </summary>
|
|
|
|
public string Channel1 { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Get/Set the name of the channel that has been put on hold.
|
|
|
|
/// </summary>
|
|
|
|
public string Channel2 { get; set; }
|
|
|
|
}
|
2013-01-18 15:55:50 +00:00
|
|
|
}
|