asternet/Asterisk.2013/Asterisk.NET/Manager/Event/MeetmeTalkingEvent.cs
2014-01-08 14:16:39 +00:00

21 lines
436 B
C#

namespace AsterNET.Manager.Event
{
/// <summary>
/// A MeetMeTalkingEvent is triggered when a user starts talking in a meet me conference.
/// </summary>
public class MeetmeTalkingEvent : AbstractMeetmeEvent
{
private bool status;
public bool Status
{
get { return this.status; }
set { this.status = value; }
}
public MeetmeTalkingEvent(ManagerConnection source)
: base(source)
{
}
}
}