namespace AsterNET.Manager.Event { /// /// A MeetMeJoinEvent is triggered if a channel joins a meet me conference.
/// It is implemented in apps/app_meetme.c ///
public class MeetmeJoinEvent : AbstractMeetmeEvent { private string callerIdNum; private string callerIdName; public string CallerIdNum { get { return this.callerIdNum; } set { this.callerIdNum = value; } } public string CallerIdName { get { return this.callerIdName; } set { this.callerIdName = value; } } public MeetmeJoinEvent(ManagerConnection source) : base(source) { } } }