2014-01-08 14:16:39 +00:00
|
|
|
namespace AsterNET.Manager.Event
|
2013-01-18 15:55:50 +00:00
|
|
|
{
|
|
|
|
/// <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" />
|
2016-10-19 07:20:23 +00:00
|
|
|
/// <seealso cref="Manager.Event.ZapShowChannelsEvent" />
|
2013-01-18 15:55:50 +00:00
|
|
|
public class ZapShowChannelsCompleteEvent : ResponseEvent
|
|
|
|
{
|
|
|
|
public ZapShowChannelsCompleteEvent(ManagerConnection source)
|
|
|
|
: base(source)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|