2014-01-08 14:16:39 +00:00
|
|
|
namespace AsterNET.Manager.Event
|
2013-01-18 15:55:50 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// A MeetMeLeaveEvent is triggered if a channel leaves a meet me conference.<br/>
|
|
|
|
/// It is implemented in <code>apps/app_meetme.c</code>
|
|
|
|
/// </summary>
|
|
|
|
public class MeetmeLeaveEvent : AbstractMeetmeEvent
|
|
|
|
{
|
|
|
|
private string callerIdNum;
|
|
|
|
private string callerIdName;
|
|
|
|
private long duration;
|
|
|
|
|
|
|
|
public string CallerIdNum
|
|
|
|
{
|
|
|
|
get { return this.callerIdNum; }
|
|
|
|
set { this.callerIdNum = value; }
|
|
|
|
}
|
|
|
|
public string CallerIdName
|
|
|
|
{
|
|
|
|
get { return this.callerIdName; }
|
|
|
|
set { this.callerIdName = value; }
|
|
|
|
}
|
|
|
|
|
|
|
|
public long Duration
|
|
|
|
{
|
|
|
|
get { return this.duration; }
|
|
|
|
set { this.duration = value; }
|
|
|
|
}
|
|
|
|
|
|
|
|
public MeetmeLeaveEvent(ManagerConnection source)
|
|
|
|
: base(source)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|