namespace Asterisk.NET.Manager.Event { /// /// A MeetMeLeaveEvent is triggered if a channel leaves a meet me conference.
/// It is implemented in apps/app_meetme.c ///
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) { } } }