asternet/Asterisk.2013/Asterisk.NET/Manager/Event/ZapShowChannelsCompleteEvent.cs
2014-01-08 14:16:39 +00:00

16 lines
505 B
C#

namespace AsterNET.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)
{
}
}
}