2014-01-08 14:16:39 +00:00
|
|
|
namespace AsterNET.Manager.Event
|
2013-01-18 15:55:50 +00:00
|
|
|
{
|
2015-01-03 15:37:29 +00:00
|
|
|
/// <summary>
|
|
|
|
/// A MeetMeTalkingEvent is triggered when a user starts talking in a meet me conference.
|
|
|
|
/// </summary>
|
|
|
|
public class MeetmeTalkingEvent : AbstractMeetmeEvent
|
|
|
|
{
|
|
|
|
public MeetmeTalkingEvent(ManagerConnection source)
|
|
|
|
: base(source)
|
|
|
|
{
|
|
|
|
}
|
2013-01-18 15:55:50 +00:00
|
|
|
|
2015-01-03 15:37:29 +00:00
|
|
|
public bool Status { get; set; }
|
|
|
|
}
|
2013-01-18 15:55:50 +00:00
|
|
|
}
|