72ddf45b9f
enable XML documentation output (for intellisense when using as a dll, eg Nuget) update Sandcastle documentation (allows enabling Git Hub Pages, see: https://help.github.com/articles/configuring-a-publishing-source-for-github-pages/ , uses '/docs' folder)
16 lines
505 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
} |