namespace AsterNET.Manager.Event { /// /// A QueueCallerJoinEvent is triggered when a channel joins a queue.
///
public class QueueCallerJoinEvent : QueueEvent { public string Position { get; set; } public QueueCallerJoinEvent(ManagerConnection source) : base(source) { } } }