namespace AsterNET.Manager.Event
{
///
/// A HoldedCallEvent is triggered when a channel is put on hold.
/// It is implemented in res/res_features.c
///
public class HoldedCallEvent : ManagerEvent
{
public HoldedCallEvent(ManagerConnection source)
: base(source)
{
}
///
/// Get/Set the unique id of the channel that put the other channel on hold.
///
public string UniqueId1 { get; set; }
///
/// Get/Set the unique id of the channel that has been put on hold.
///
public string UniqueId2 { get; set; }
///
/// Get/Set the name of the channel that put the other channel on hold.
///
public string Channel1 { get; set; }
///
/// Get/Set the name of the channel that has been put on hold.
///
public string Channel2 { get; set; }
}
}