diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/QueueCallerJoinEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/QueueCallerJoinEvent.cs
index 0416417..ced7e16 100644
--- a/Asterisk.2013/Asterisk.NET/Manager/Event/QueueCallerJoinEvent.cs
+++ b/Asterisk.2013/Asterisk.NET/Manager/Event/QueueCallerJoinEvent.cs
@@ -1,15 +1,27 @@
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)
+ ///
+ /// A QueueCallerJoinEvent is triggered when a channel joins a queue.
+ ///
+ public class QueueCallerJoinEvent : JoinEvent
+ {
+ // "Channel" in ManagerEvent.cs
+
+ // "Queue" in QueueEvent.cs
+
+ ///
+ /// Get/Set the Caller*ID number of the channel that joined the queue if set.
+ /// If the channel has no caller id set "unknown" is returned.
+ ///
+ public string CallerIDNum { get; set; }
+
+ // "CallerIdName" in JoinEvent.cs
+
+ // "Position" in JoinEvent.cs
+
+ public QueueCallerJoinEvent(ManagerConnection source)
: base(source)
{
}
}
-}
\ No newline at end of file
+}