asternet/Asterisk.2013/Asterisk.NET/Manager/Event/QueueCallerJoinEvent.cs
Deantwo 7d9260f419
Removed CallerIdNum
Makes it much easier to work with if it is the same as JoinEvent.
2017-12-21 16:16:28 +01:00

24 lines
458 B
C#

namespace AsterNET.Manager.Event
{
/// <summary>
/// A QueueCallerJoinEvent is triggered when a channel joins a queue.<br/>
/// </summary>
public class QueueCallerJoinEvent : JoinEvent
{
// "Channel" in ManagerEvent.cs
// "Queue" in QueueEvent.cs
// "CallerId" in JoinEvent.cs
// "CallerIdName" in JoinEvent.cs
// "Position" in JoinEvent.cs
public QueueCallerJoinEvent(ManagerConnection source)
: base(source)
{
}
}
}