7d9260f419
Makes it much easier to work with if it is the same as JoinEvent.
24 lines
458 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|