asternet/Asterisk.2013/Asterisk.NET/Manager/Event/ZapShowChannelsCompleteEvent.cs

16 lines
509 B
C#

namespace Asterisk.NET.Manager.Event
{
/// <summary>
/// A ZapShowChannelsCompleteEvent is triggered after the state of all zap channels has been reported
/// in response to a ZapShowChannelsAction.
/// </summary>
/// <seealso cref="Manager.Action.ZapShowChannelsAction" />
/// <seealso cref="Manager.event.ZapShowChannelsEvent" />
public class ZapShowChannelsCompleteEvent : ResponseEvent
{
public ZapShowChannelsCompleteEvent(ManagerConnection source)
: base(source)
{
}
}
}