2014-01-08 14:16:39 +00:00
|
|
|
namespace AsterNET.Manager.Event
|
2013-01-18 15:55:50 +00:00
|
|
|
{
|
|
|
|
/// <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)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|