using System; namespace Implab.Components { public class StateChangeEventArgs : EventArgs { /// /// The error information if any /// public Exception LastError { get; set; } /// /// The state of the service corresponding to this event /// public ExecutionState State { get; set; } } }