using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AsterNET.Manager.Event { /// /// An ConfbridgeListCompleteEvent is triggered after the state of all Confbridges has been /// reported in response to an ConfbridgeListAction. /// /// See https://wiki.asterisk.org/wiki/display/AST/ConfBridge+AMI+Actions /// /// /// public class ConfbridgeListCompleteEvent : ResponseEvent { /// /// Creates a new using the given . /// /// public ConfbridgeListCompleteEvent(ManagerConnection source) : base(source) { } } }