asternet/Asterisk.2013/Asterisk.NET/Manager/Event/MeetmeJoinEvent.cs

18 lines
501 B
C#
Raw Normal View History

2014-01-08 14:16:39 +00:00
namespace AsterNET.Manager.Event
{
2015-01-03 15:37:29 +00:00
/// <summary>
/// A MeetMeJoinEvent is triggered if a channel joins a meet me conference.<br />
/// It is implemented in apps/app_meetme.c
2015-01-03 15:37:29 +00:00
/// </summary>
public class MeetmeJoinEvent : AbstractMeetmeEvent
{
public MeetmeJoinEvent(ManagerConnection source)
: base(source)
{
}
2015-01-03 15:37:29 +00:00
public string CallerIdNum { get; set; }
2015-01-03 15:37:29 +00:00
public string CallerIdName { get; set; }
}
}