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