2014-01-08 14:16:39 +00:00
|
|
|
namespace AsterNET.Manager.Event
|
2013-01-18 15:55:50 +00:00
|
|
|
{
|
|
|
|
/// <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)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|