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