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)
24 lines
585 B
C#
24 lines
585 B
C#
namespace AsterNET.Manager.Event
|
|
{
|
|
/// <summary>
|
|
/// A StatusCompleteEvent is triggered after the state of all channels has been reported in response
|
|
/// to a StatusAction.
|
|
/// </summary>
|
|
/// <seealso cref="Manager.Action.StatusAction"/>
|
|
/// <seealso cref="Manager.Event.StatusEvent"/>
|
|
public class StatusCompleteEvent : ResponseEvent
|
|
{
|
|
private int items;
|
|
|
|
public int Items
|
|
{
|
|
get { return this.items; }
|
|
set { this.items = value; }
|
|
}
|
|
|
|
public StatusCompleteEvent(ManagerConnection source)
|
|
: base(source)
|
|
{
|
|
}
|
|
}
|
|
} |